fix a compile problem found by IEF
This commit is contained in:
parent
0e4c4860c1
commit
fe7a666496
3 changed files with 4 additions and 3 deletions
|
@ -18,6 +18,7 @@ Symbols are:
|
||||||
(F) - Changed UserMode handling stuff again, as it wasn't very good last change.
|
(F) - Changed UserMode handling stuff again, as it wasn't very good last change.
|
||||||
(F) - Can not kill services clients, or any client on a U lined server anymore
|
(F) - Can not kill services clients, or any client on a U lined server anymore
|
||||||
(F) - Stats p showed opers real hosts... Fixed
|
(F) - Stats p showed opers real hosts... Fixed
|
||||||
|
(F) - Fixed up compile problem reported by IEF
|
||||||
|
|
||||||
* NeoIRCd Version 0.9.5 - 12th Oct, 2002 - Fish
|
* NeoIRCd Version 0.9.5 - 12th Oct, 2002 - Fish
|
||||||
(S) - Fixed up event.c for a possible serious bug reported by Dianora from hybrid team
|
(S) - Fixed up event.c for a possible serious bug reported by Dianora from hybrid team
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
dnl $Id: configure.in,v 1.8 2003/03/06 14:01:46 fishwaldo Exp $
|
dnl $Id: configure.in,v 1.9 2003/04/03 13:08:58 fishwaldo Exp $
|
||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
dnl AC_INIT(include/class.h) <- what is this ? -TimeMr14C
|
dnl AC_INIT(include/class.h) <- what is this ? -TimeMr14C
|
||||||
|
|
||||||
|
@ -403,7 +403,7 @@ int main(void) {
|
||||||
if test "X$cf_openssl_version_ok" = "Xyes"; then
|
if test "X$cf_openssl_version_ok" = "Xyes"; then
|
||||||
AC_MSG_RESULT(ok)
|
AC_MSG_RESULT(ok)
|
||||||
AC_DEFINE(USE_SSL)
|
AC_DEFINE(USE_SSL)
|
||||||
SSL_LIBS="$SSL_LIBS -lcrypto -lssl"
|
SSL_LIBS="$SSL_LIBS -lssl -lcrypto"
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no - OpenSSL support disabled)
|
AC_MSG_RESULT(no - OpenSSL support disabled)
|
||||||
fi
|
fi
|
||||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -5447,7 +5447,7 @@ echo "${ECHO_T}ok" >&6
|
||||||
#define USE_SSL 1
|
#define USE_SSL 1
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
SSL_LIBS="$SSL_LIBS -lcrypto -lssl"
|
SSL_LIBS="$SSL_LIBS -lssl -lcrypto"
|
||||||
else
|
else
|
||||||
echo "$as_me:$LINENO: result: no - OpenSSL support disabled" >&5
|
echo "$as_me:$LINENO: result: no - OpenSSL support disabled" >&5
|
||||||
echo "${ECHO_T}no - OpenSSL support disabled" >&6
|
echo "${ECHO_T}no - OpenSSL support disabled" >&6
|
||||||
|
|
Reference in a new issue