- (bal) Double -I for OpenSSL on SCO. Patch by Tim Rice
<tim@multitalents.net>
This commit is contained in:
parent
379f205a16
commit
4ef92b5844
|
@ -3,6 +3,8 @@
|
|||
<tell@telltronics.org>
|
||||
- (bal) Patch to force OpenSSH rpm to require the same version of OpenSSL
|
||||
that it was compiled against. Patch by Pekka Savola <pekkas@netcore.fi>
|
||||
- (bal) Double -I for OpenSSL on SCO. Patch by Tim Rice
|
||||
<tim@multitalents.net>
|
||||
|
||||
20010222
|
||||
- (bal) Corrected SCO luid patch by svaughan <svaughan@asterion.com>
|
||||
|
@ -4104,4 +4106,4 @@
|
|||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.814 2001/02/23 04:55:46 mouring Exp $
|
||||
$Id: ChangeLog,v 1.815 2001/02/23 05:05:53 mouring Exp $
|
||||
|
|
10
configure.in
10
configure.in
|
@ -1,4 +1,4 @@
|
|||
# $Id: configure.in,v 1.250 2001/02/21 02:35:37 mouring Exp $
|
||||
# $Id: configure.in,v 1.251 2001/02/23 05:05:53 mouring Exp $
|
||||
|
||||
AC_INIT(ssh.c)
|
||||
|
||||
|
@ -619,9 +619,9 @@ AC_CACHE_CHECK([for OpenSSL directory], ac_cv_openssldir, [
|
|||
# Try to use $ssldir/include if it exists, otherwise
|
||||
# $ssldir
|
||||
if test -d "$ssldir/include" ; then
|
||||
CPPFLAGS="$CPPFLAGS -I$ssldir/include"
|
||||
CPPFLAGS="$saved_CPPFLAGS -I$ssldir/include"
|
||||
else
|
||||
CPPFLAGS="$CPPFLAGS -I$ssldir"
|
||||
CPPFLAGS="$saved_CPPFLAGS -I$ssldir"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
@ -681,9 +681,9 @@ if (test ! -z "$ac_cv_openssldir" && test "x$ac_cv_openssldir" != "x(system)") ;
|
|||
# Try to use $ssldir/include if it exists, otherwise
|
||||
# $ssldir
|
||||
if test -d "$ssldir/include" ; then
|
||||
CPPFLAGS="$CPPFLAGS -I$ssldir/include"
|
||||
CPPFLAGS="$saved_CPPFLAGS -I$ssldir/include"
|
||||
else
|
||||
CPPFLAGS="$CPPFLAGS -I$ssldir"
|
||||
CPPFLAGS="$saved_CPPFLAGS -I$ssldir"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue