Added some more flags to the "summary" that configure prints at the end.

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1950 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
cflakes
2010-04-28 23:01:18 +00:00
parent 73c6a32742
commit d72fc441d2
2 changed files with 40 additions and 21 deletions
Vendored
+20 -10
View File
@@ -2821,6 +2821,9 @@ if test "${enable_run_from_source+set}" = set; then :
enableval=$enable_run_from_source; if test "x$enableval" = "xyes" ; then
appendCXX -DRUN_FROM_SOURCE
fi
RUNFROMSOURCE="$enableval"
else
RUNFROMSOURCE="no"
fi
@@ -4827,19 +4830,26 @@ fi
echo
echo znc 0.089 configured
echo
echo "debug: $DEBUG"
echo "ipv6: $IPV6"
echo "openssl: $SSL"
echo "c-ares: $ARES"
echo "perl: $PERL"
echo "debug: $DEBUG"
echo "ipv6: $IPV6"
echo "openssl: $SSL"
echo "c-ares: $ARES"
echo "perl: $PERL"
if test x"$SASL" = "x" ; then
echo "sasl: no"
echo "sasl: no"
else
echo "sasl: yes"
echo "sasl: yes"
fi
echo "extra: $EXTRA"
echo "extra: $EXTRA"
if test x"$TCL_FLAGS" = "x" ; then
echo "tcl: no"
echo "tcl: no"
else
echo "tcl: yes"
echo "tcl: yes"
fi
if test x"$CHARSET" = "x" ; then
echo "charset: no"
else
echo "charset: yes"
fi
echo "run from src: $RUNFROMSOURCE"
+20 -11
View File
@@ -111,7 +111,9 @@ AC_ARG_ENABLE( [run-from-source],
AS_HELP_STRING([--enable-run-from-source], [znc will be runnable without installation]),
[if test "x$enableval" = "xyes" ; then
appendCXX -DRUN_FROM_SOURCE
fi])
fi
RUNFROMSOURCE="$enableval"],
[RUNFROMSOURCE="no"])
if test "$DEBUG" != "no"; then
appendCXX -ggdb -D_DEBUG
@@ -364,19 +366,26 @@ AC_OUTPUT
echo
echo znc AC_PACKAGE_VERSION configured
echo
echo "debug: $DEBUG"
echo "ipv6: $IPV6"
echo "openssl: $SSL"
echo "c-ares: $ARES"
echo "perl: $PERL"
echo "debug: $DEBUG"
echo "ipv6: $IPV6"
echo "openssl: $SSL"
echo "c-ares: $ARES"
echo "perl: $PERL"
if test x"$SASL" = "x" ; then
echo "sasl: no"
echo "sasl: no"
else
echo "sasl: yes"
echo "sasl: yes"
fi
echo "extra: $EXTRA"
echo "extra: $EXTRA"
if test x"$TCL_FLAGS" = "x" ; then
echo "tcl: no"
echo "tcl: no"
else
echo "tcl: yes"
echo "tcl: yes"
fi
if test x"$CHARSET" = "x" ; then
echo "charset: no"
else
echo "charset: yes"
fi
echo "run from src: $RUNFROMSOURCE"