diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2015-04-17 12:03:15 +0200 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2015-04-17 12:03:15 +0200 |
commit | 266c9ad4eb1f23e6edba5201762007ac3a7419a1 (patch) | |
tree | 8f1e5360038f6415b4601dca0d15e41c4b63d9a2 /configure | |
parent | 3045c13d18850533efc631b474e3c8aa7bc3aea5 (diff) | |
download | prosody-266c9ad4eb1f23e6edba5201762007ac3a7419a1.tar.gz prosody-266c9ad4eb1f23e6edba5201762007ac3a7419a1.zip |
configure: Add ostype preset for NetBSD
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -32,8 +32,8 @@ cat <<EOF Configure Prosody prior to building. --help This help. ---ostype=OS Use one of the OS presets. - May be one of: debian, macosx, linux, freebsd, openbsd +--ostype=OS Use one of the OS presets. May be one of: + debian, macosx, linux, freebsd, openbsd, netbsd --prefix=DIR Prefix where Prosody should be installed. Default is $PREFIX --sysconfdir=DIR Location where the config file should be installed. @@ -146,6 +146,15 @@ do LUA_INCDIR="/usr/local/include"; LUA_INCDIR_SET="yes" fi + if [ "$OSTYPE" = "netbsd" ]; then + RUNWITH="lua5.1" + LUA_INCDIR="/usr/pkg/include/lua-5.1" + LUA_INCDIR_SET=yes + LUA_LIBDIR="/usr/pkg/lib/lua/5.1" + LUA_LIBDIR_SET=yes + CFLAGS="-Wall -fPIC -I/usr/pkg/include" + LDFLAGS="-L/usr/pkg/lib -Wl,-rpath,/usr/pkg/lib -shared" + fi if [ "$OSTYPE" = "pkg-config" ]; then if [ "$LUA_SUFFIX_SET" != "yes" ]; then LUA_SUFFIX="5.1"; |