diff options
author | Kim Alvefur <zash@zash.se> | 2015-02-21 10:34:56 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-02-21 10:34:56 +0100 |
commit | f67cdc6ec69b95a570784d96371408e29a28dc1d (patch) | |
tree | bca3c04192429bf6272572d8178b1588c3d7477d /configure | |
parent | b7a38c8c93f8e6bee2579de6b9468fbb68c14589 (diff) | |
parent | 158dc0f9e1071b627a4928825e4e22d73785cfe8 (diff) | |
download | prosody-f67cdc6ec69b95a570784d96371408e29a28dc1d.tar.gz prosody-f67cdc6ec69b95a570784d96371408e29a28dc1d.zip |
Merge 0.9->0.10
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -4,6 +4,7 @@ PREFIX=/usr/local SYSCONFDIR="$PREFIX/etc/prosody" +LIBDIR="$PREFIX/lib" DATADIR="$PREFIX/var/lib/prosody" LUA_SUFFIX="" LUA_DIR="/usr" @@ -36,6 +37,8 @@ Configure Prosody prior to building. Default is $PREFIX --sysconfdir=DIR Location where the config file should be installed. Default is \$PREFIX/etc/prosody +--libdir=DIR Location where the server files should be stored. + Default is \$PREFIX/lib --datadir=DIR Location where the server data should be stored. Default is \$PREFIX/var/lib/prosody --lua-suffix=SUFFIX Versioning suffix to use in Lua filenames. @@ -133,6 +136,9 @@ do LUA_INCDIR="/usr/local/include"; fi ;; + --libdir=*) + LIBDIR="$value" + ;; --datadir=*) DATADIR="$value" DATADIR_SET=yes @@ -337,6 +343,7 @@ cat <<EOF > config.unix PREFIX=$PREFIX SYSCONFDIR=$SYSCONFDIR +LIBDIR=$LIBDIR DATADIR=$DATADIR LUA_SUFFIX=$LUA_SUFFIX LUA_DIR=$LUA_DIR |