Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
66964decfa | ||
|
|
4a760096e6 | ||
|
|
a4ce883a4b | ||
|
|
853e1535a7 | ||
|
|
11d0d6ad34 |
@@ -1,7 +1,25 @@
|
||||
20061006
|
||||
- (dtucker) [configure.ac] Set put -lselinux into $LIBS while testing for
|
||||
SELinux functions so they're detected correctly. Patch from pebenito at
|
||||
gentoo.org.
|
||||
|
||||
20061001
|
||||
- (dtucker) [audit-bsm.c] Include errno.h. Pointed out by des at des.no.
|
||||
|
||||
20060929
|
||||
- (dtucker) [configure.ac] Bug #1239: Fix configure test for OpenSSH engine
|
||||
support. Patch from andrew.benham at thus net.
|
||||
|
||||
20060928
|
||||
- (dtucker) [entropy.c] Bug #1238: include signal.h to fix compilation error
|
||||
on Solaris 8 w/out /dev/random or prngd. Patch from rl at
|
||||
math.technion.ac.il.
|
||||
|
||||
20060926
|
||||
- (dtucker) [bufaux.h] nuke bufaux.h; it's already gone from OpenBSD and not
|
||||
referenced any more. ok djm@
|
||||
- (dtucker) [sftp-server.8] Resync; spotted by djm@
|
||||
- (dtucker) Release 4.4p1.
|
||||
|
||||
20060924
|
||||
- (tim) [configure.ac] Remove CFLAGS hack for UnixWare 1.x/2.x (added
|
||||
@@ -5487,4 +5505,4 @@
|
||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||
|
||||
$Id: ChangeLog,v 1.4558.2.2 2006/09/26 10:57:05 dtucker Exp $
|
||||
$Id: ChangeLog,v 1.4558.2.7 2006/10/06 23:09:26 dtucker Exp $
|
||||
|
||||
+2
-1
@@ -1,4 +1,4 @@
|
||||
/* $Id: audit-bsm.c,v 1.4 2006/09/01 05:38:36 djm Exp $ */
|
||||
/* $Id: audit-bsm.c,v 1.4.2.1 2006/09/30 22:10:21 dtucker Exp $ */
|
||||
|
||||
/*
|
||||
* TODO
|
||||
@@ -39,6 +39,7 @@
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdarg.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
||||
+6
-3
@@ -1,4 +1,4 @@
|
||||
# $Id: configure.ac,v 1.367 2006/09/24 19:08:59 tim Exp $
|
||||
# $Id: configure.ac,v 1.367.2.2 2006/10/06 23:09:27 dtucker Exp $
|
||||
#
|
||||
# Copyright (c) 1999-2004 Damien Miller
|
||||
#
|
||||
@@ -15,7 +15,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_INIT(OpenSSH, Portable, [email protected])
|
||||
AC_REVISION($Revision: 1.367 $)
|
||||
AC_REVISION($Revision: 1.367.2.2 $)
|
||||
AC_CONFIG_SRCDIR([ssh.c])
|
||||
|
||||
AC_CONFIG_HEADER(config.h)
|
||||
@@ -1916,7 +1916,7 @@ AC_ARG_WITH(ssl-engine,
|
||||
AC_TRY_COMPILE(
|
||||
[ #include <openssl/engine.h>],
|
||||
[
|
||||
int main(void){ENGINE_load_builtin_engines();ENGINE_register_all_complete();}
|
||||
ENGINE_load_builtin_engines();ENGINE_register_all_complete();
|
||||
],
|
||||
[ AC_MSG_RESULT(yes)
|
||||
AC_DEFINE(USE_OPENSSL_ENGINE, 1,
|
||||
@@ -3145,7 +3145,10 @@ AC_ARG_WITH(selinux,
|
||||
AC_MSG_ERROR(SELinux support requires selinux.h header))
|
||||
AC_CHECK_LIB(selinux, setexeccon, [ LIBSELINUX="-lselinux" ],
|
||||
AC_MSG_ERROR(SELinux support requires libselinux library))
|
||||
save_LIBS="$LIBS"
|
||||
LIBS="$LIBS $LIBSELINUX"
|
||||
AC_CHECK_FUNCS(getseuserbyname get_default_context_with_level)
|
||||
LIBS="$save_LIBS"
|
||||
fi ]
|
||||
)
|
||||
AC_SUBST(LIBSELINUX)
|
||||
|
||||
Reference in New Issue
Block a user