mirror of
https://github.com/znc/znc.git
synced 2026-08-06 08:52:57 +02:00
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:
@@ -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
@@ -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"] )
|
||||
|
||||
|
||||
Reference in New Issue
Block a user