Make ./configure --help output look a little better

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1193 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2008-09-07 16:25:11 +00:00
parent fa57b9eb54
commit 85845556cd
2 changed files with 9 additions and 9 deletions
Vendored
+4 -6
View File
@@ -1239,12 +1239,10 @@ Optional Features:
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-openssl=/path/to/openssl
--with-module-prefix=/path/to/moduledir
--with-module-data-prefix=/path/to/moduledir
--with-openssl=DIR openssl's installation prefix
--with-module-prefix module object code [LIBDIR/znc]
--with-module-data-prefix=DIR
static module data (webadmin skins) [DATADIR/znc]
Some influential environment variables:
CXX C++ compiler command
+5 -3
View File
@@ -64,7 +64,7 @@ if test -z "$ISCYGWIN" ; then
fi
AC_ARG_WITH( [openssl],
AC_HELP_STRING([--with-openssl=/path/to/openssl], []),
AC_HELP_STRING([--with-openssl=DIR], [openssl's installation prefix]),
[OPENSSL=$withval],)
AC_ARG_ENABLE( [debug],
AC_HELP_STRING([--enable-debug], [enable debuging]),
@@ -126,12 +126,14 @@ if test -z "$prefix" || test $prefix = "NONE"; then
fi
AC_ARG_WITH( [module-prefix],
AC_HELP_STRING([--with-module-prefix=/path/to/moduledir], []),
AC_HELP_STRING([--with-module-prefix],
[module object code [[LIBDIR/znc]]]),
[MODDIR=$withval],
[MODDIR="${libdir}/znc"] )
AC_ARG_WITH( [module-data-prefix],
AC_HELP_STRING([--with-module-data-prefix=/path/to/moduledir], []),
AC_HELP_STRING([--with-module-data-prefix=DIR],
[static module data (webadmin skins) [[DATADIR/znc]]]),
[DATADIR=$withval],
[DATADIR="${datadir}/znc"] )