mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
configure: Add 'openbsd' preset (thanks xavier)
This commit is contained in:
parent
78a5742d5d
commit
dcec3ba639
1 changed files with 10 additions and 1 deletions
11
configure
vendored
11
configure
vendored
|
@ -59,6 +59,8 @@ Configure Prosody prior to building.
|
|||
Default is $CC
|
||||
--linker=CC The linker to use when building modules.
|
||||
Default is $LD
|
||||
--require-config Will cause Prosody to refuse to run when
|
||||
it fails to find a configuration file
|
||||
EOF
|
||||
}
|
||||
|
||||
|
@ -110,7 +112,7 @@ do
|
|||
CFLAGS="-Wall -fPIC"
|
||||
LDFLAGS="-shared"
|
||||
fi
|
||||
if [ "$OSTYPE" = "freebsd" ]
|
||||
if [ "$OSTYPE" = "freebsd" -o "$OSTYPE" = "openbsd" ]
|
||||
then LUA_INCDIR="/usr/local/include/lua51"
|
||||
LUA_INCDIR_SET=yes
|
||||
CFLAGS="-Wall -fPIC -I/usr/local/include"
|
||||
|
@ -120,11 +122,17 @@ do
|
|||
LUA_DIR=/usr/local
|
||||
LUA_DIR_SET=yes
|
||||
fi
|
||||
if [ "$OSTYPE" = "openbsd" ]
|
||||
then LUA_INCDIR="/usr/local/include";
|
||||
fi
|
||||
;;
|
||||
--datadir=*)
|
||||
DATADIR="$value"
|
||||
DATADIR_SET=yes
|
||||
;;
|
||||
--require-config)
|
||||
REQUIRE_CONFIG=yes
|
||||
;;
|
||||
--lua-suffix=*)
|
||||
LUA_SUFFIX="$value"
|
||||
LUA_SUFFIX_SET=yes
|
||||
|
@ -322,6 +330,7 @@ LUA_DIR=$LUA_DIR
|
|||
LUA_INCDIR=$LUA_INCDIR
|
||||
LUA_LIBDIR=$LUA_LIBDIR
|
||||
LUA_BINDIR=$LUA_BINDIR
|
||||
REQUIRE_CONFIG=$REQUIRE_CONFIG
|
||||
IDN_LIB=$IDN_LIB
|
||||
IDNA_LIBS=$IDNA_LIBS
|
||||
OPENSSL_LIB=$OPENSSL_LIB
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue