X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=configure;h=bd8eb48c12b24b4268b30a5f867d31b816b7f693;hb=654dec0db4e69df7f2f060f48ce544af8450bf0b;hp=8eb7b36747b53d67e7352634259b3bef67f13909;hpb=ff1011c1f38b96360a76dea3b9a493f03d08f54b;p=prosody.git diff --git a/configure b/configure index 8eb7b367..bd8eb48c 100755 --- a/configure +++ b/configure @@ -12,8 +12,10 @@ LUA_INCDIR="/usr/include" LUA_LIBDIR="/usr/lib" IDN_LIB=idn OPENSSL_LIB=crypto +CC=gcc +LD=gcc -CFLAGS="-fPIC" +CFLAGS="-fPIC -Wall" LFLAGS="-shared" # Help @@ -45,6 +47,12 @@ Configure Prosody prior to building. Default is $OPENSSL_LIB --cflags=FLAGS Flags to pass to the compiler Default is $CFLAGS +--lflags=FLAGS Flags to pass to the linker + Default is $LFLAGS +--c-compiler=CC The C compiler to use when building modules. + 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 @@ -70,11 +78,15 @@ do PREFIX="$value" PREFIX_SET=yes ;; + --sysconfdir=*) + SYSCONFDIR="$value" + SYSCONFDIR_SET=yes + ;; --ostype=*) OSTYPE="$value" OSTYPE_SET=yes ;; - --data-dir=*) + --datadir=*) DATADIR="$value" DATADIR_SET=yes ;; @@ -105,6 +117,15 @@ do --cflags=*) CFLAGS="$value" ;; + --lflags=*) + LFLAGS="$value" + ;; + --c-compiler=*) + CC="$value" + ;; + --linker=*) + LD="$value" + ;; *) echo "Error: Unknown flag: $1" exit 1 @@ -126,7 +147,7 @@ then LUA_INCDIR_SET=yes LUA_LIBDIR=/usr/local/lib LUA_LIBDIR_SET=yes - CFLAGS="" + CFLAGS="-Wall" LFLAGS="-bundle -undefined dynamic_lookup" fi fi @@ -279,6 +300,8 @@ IDN_LIB=$IDN_LIB OPENSSL_LIB=$OPENSSL_LIB CFLAGS=$CFLAGS LFLAGS=$LFLAGS +CC=$CC +LD=$LD EOF