diff options
author | Peter Powell <petpow@saberuk.com> | 2014-06-22 08:59:14 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2014-06-26 10:53:45 +0100 |
commit | 1cf1f1fba94c6749f7b4d02c8138349ba75c9c1a (patch) | |
tree | 952d35a9f9a48d22cec5aeedbdeccf98a52d13c7 /make/configure.pm | |
parent | 68dba8dc27303b118fb5c7266a8459ca8ef68366 (diff) |
Fix various small problems with configure.
- Fix temporary files not being deleted after use.
- Fix the option for disabling rpath.
- Fix the help message:
* Fix indentation of some help options.
* Fix default paths not containing 'run'.
* Remove documentation for --disable-ipv6 (exists but does nothing).
* Remove documentation for --library-dir (does not exist).
- Fix some minor errors in messages.
Diffstat (limited to 'make/configure.pm')
-rw-r--r-- | make/configure.pm | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/make/configure.pm b/make/configure.pm index 606483e98..f877846fc 100644 --- a/make/configure.pm +++ b/make/configure.pm @@ -276,7 +276,6 @@ InspIRCd 1.0.x, are also allowed. to select() [not set] --disable-kqueue Do not enable kqueue(), fall back to select() [not set] - --disable-ipv6 Do not build IPv6 native InspIRCd [not set] --with-cc=[filename] Use an alternative compiler to build InspIRCd [g++] --with-maxbuf=[n] Change the per message buffer size [512] @@ -287,17 +286,16 @@ InspIRCd 1.0.x, are also allowed. and library dirs as subdirectories of prefix) [$PWD] --config-dir=[directory] Config file directory for config and SSL certs - [$PWD/conf] + [$PWD/run/conf] --log-dir=[directory] Log file directory for logs - [$PWD/logs] - --data-dir=[directory] Data directory for variable data, such as the permchannel configuration and the XLine database - [$PWD/data] + [$PWD/run/logs] + --data-dir=[directory] Data directory for variable data, such as the + permchannel configuration and the XLine database + [$PWD/run/data] --module-dir=[directory] Modules directory for loadable modules - [$PWD/modules] + [$PWD/run/modules] --binary-dir=[directory] Binaries directory for core binary - [$PWD/bin] - --library-dir=[directory] Library directory for core libraries - [$PWD/lib] + [$PWD/run/bin] --list-extras Show current status of extra modules --enable-extras=[extras] Enable the specified list of extras --disable-extras=[extras] Disable the specified list of extras |