mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
NOSSL was in the wrong spot
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@728 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
3
configure
vendored
3
configure
vendored
@@ -1971,8 +1971,6 @@ fi;
|
||||
# Check whether --enable-openssl or --disable-openssl was given.
|
||||
if test "${enable_openssl+set}" = set; then
|
||||
enableval="$enable_openssl"
|
||||
|
||||
else
|
||||
NOSSL=1
|
||||
fi;
|
||||
# Check whether --enable-perl or --disable-perl was given.
|
||||
@@ -2988,7 +2986,6 @@ if test $ac_cv_func_dlopen = yes; then
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
if test -z "$NOSSL"; then
|
||||
if test -n "$OPENSSL"; then
|
||||
appendLib -L${OPENSSL}/lib
|
||||
|
||||
@@ -44,7 +44,7 @@ AC_ARG_WITH( openssl, [ --with-openssl=/path/to/openssl], OPENSSL=$withval,)
|
||||
AC_ARG_ENABLE( debug, [ --enable-debug enable debuging], appendCXX -Wall -ggdb -D_DEBUG, appendCXX -Wall -s -O2 -fomit-frame-pointer )
|
||||
AC_ARG_ENABLE( ipv6, [ --enable-ipv6 enable ipv6 support], appendCXX -DHAVE_IPV6,)
|
||||
AC_ARG_ENABLE( modules, [ --disable-modules disable modules], MODULES="no", MODULES="yes")
|
||||
AC_ARG_ENABLE( openssl, [ --disable-openssl disable openssl], , NOSSL=1)
|
||||
AC_ARG_ENABLE( openssl, [ --disable-openssl disable openssl], NOSSL=1,)
|
||||
AC_ARG_ENABLE( perl, [ --disable-perl disable perl], NOPERL=1,)
|
||||
|
||||
AC_CHECK_LIB( gnugetopt, getopt_long,)
|
||||
@@ -52,7 +52,6 @@ AC_CHECK_FUNCS( stat lstat chmod open, , echo "Missing Required libc feature" &&
|
||||
if test "$MODULES" = "yes"; then
|
||||
AC_CHECK_FUNC( dlopen,NOCHECK_DL=1,)
|
||||
fi
|
||||
|
||||
if test -z "$NOSSL"; then
|
||||
if test -n "$OPENSSL"; then
|
||||
appendLib -L${OPENSSL}/lib
|
||||
|
||||
Reference in New Issue
Block a user