- Add --with-ssl-dir option

This commit is contained in:
Damien Miller 2000-02-03 13:58:51 +11:00
parent 1852246d30
commit 0c0e4bfe3c
3 changed files with 14 additions and 3 deletions

View File

@ -1,5 +1,6 @@
20000203
- Fixed SEGVs in authloop, fix from vbzoli@hbrt.hu
- Add --with-ssl-dir option
20000202
- Fix lastlog code for directory based lastlogs. Fix from Josh Durham

View File

@ -155,6 +155,9 @@ IPv4 addresses. On Linux/glibc-2.1.2 this causes long delays in name
resolution. If this option is specified, you can still attempt to
connect to IPv6 addresses using the command line option '-6'.
--with-ssl-dir=DIR allows you to specify where your OpenSSL libraries
are installed.
If you need to pass special options to the compiler or linker, you
can specify these as enviornment variables before running ./configure.
For example:

View File

@ -46,14 +46,21 @@ if test ! -z "$rsh_path" ; then
AC_DEFINE_UNQUOTED(RSH_PATH, "$rsh_path")
fi
dnl Checks for compiler characteristics
if test "$GCC" = "yes"; then CFLAGS="$CFLAGS -Wall"; fi
AC_C_INLINE
dnl Check for OpenSSL/SSLeay directories.
AC_ARG_WITH(ssl-dir,
[ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
[
if test "x$withval" != "$xno" ; then
ssldir=$withval
fi
]
)
AC_MSG_CHECKING([for OpenSSL/SSLeay directory])
for ssldir in $prefix /usr /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local $prefix /usr/pkg ; do
for ssldir in $ssldir $prefix /usr /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local $prefix /usr/pkg ; do
if test -f "$ssldir/include/openssl/crypto.h"; then
AC_DEFINE(HAVE_OPENSSL)
GOT_SSL="yes"