diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-02 23:01:12 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-02 23:01:12 +0100 |
commit | c0937dcdb42f9ac2fc928aa91f1474607b735590 (patch) | |
tree | 24aa0a298ca27c8c7a1504a199c97444e991b439 /configure | |
parent | 33a4138411663af5fb65389e41218993c8d7bc2b (diff) | |
download | prosody-c0937dcdb42f9ac2fc928aa91f1474607b735590.tar.gz prosody-c0937dcdb42f9ac2fc928aa91f1474607b735590.zip |
configure: Set RUNWITH to lua + lua-suffix unless --runwith is given (fixes #721, #777)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -170,7 +170,6 @@ do LUA_SUFFIX="5.1"; LUA_SUFFIX_SET=yes fi - RUNWITH="lua$LUA_SUFFIX" LUA_INCDIR="/usr/include/lua$LUA_SUFFIX" LUA_INCDIR_SET=yes CFLAGS="$CFLAGS -ggdb" @@ -207,7 +206,6 @@ do 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" @@ -308,6 +306,7 @@ do ;; --runwith) RUNWITH="$value" + RUNWITH_SET=yes ;; --no-example-certs) EXCERTS= @@ -528,6 +527,10 @@ if [ -f config.unix ]; then rm -f config.unix fi +if [ "$RUNWITH_SET" != yes ]; then + RUNWITH="lua$LUA_SUFFIX" +fi + OPENSSL_LIBS="-l$OPENSSL_LIB" if [ "$PRNG" = "OPENSSL" ]; then |