aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-07-01 13:27:51 +0100
committerMatthew Wild <mwild1@gmail.com>2010-07-01 13:27:51 +0100
commit91779a57185adc6959cc043bf3a4f1a44699d71d (patch)
treefe2d3f0d69fb09996a4439f07d657fc5202de664 /configure
parente1ba231531af740addf49a82742dcd0adf1eaf1a (diff)
downloadprosody-91779a57185adc6959cc043bf3a4f1a44699d71d.tar.gz
prosody-91779a57185adc6959cc043bf3a4f1a44699d71d.zip
configure: Add ostype preset for FreeBSD (thanks dersd and tobias (no, the other one))
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 11 insertions, 1 deletions
diff --git a/configure b/configure
index f2d8fc09..a671dca7 100755
--- a/configure
+++ b/configure
@@ -26,7 +26,7 @@ Configure Prosody prior to building.
--help This help.
--ostype=OS Use one of the OS presets.
- May be one of: debian, macosx, linux
+ May be one of: debian, macosx, linux, freebsd
--prefix=DIR Prefix where Prosody should be installed.
Default is $PREFIX
--sysconfdir=DIR Location where the config file should be installed.
@@ -158,6 +158,16 @@ then
CFLAGS="-Wall -fPIC"
LDFLAGS="-shared"
fi
+ if [ "$OSTYPE" = "freebsd" ]
+ then LUA_INCDIR="/usr/local/include/lua51"
+ LUA_INCDIR_SET=yes
+ CFLAGS="-Wall -fPIC -I/usr/local/include"
+ LDFLAGS="-I/usr/local/include -shared"
+ LUA_SUFFIX="-5.1"
+ LUA_SUFFIX_SET=yes
+ LUA_DIR=/usr/local
+ LUA_DIR_SET=yes
+ fi
fi
if [ "$PREFIX_SET" = "yes" -a ! "$SYSCONFDIR_SET" = "yes" ]