aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-08-19 15:30:42 +0200
committerKim Alvefur <zash@zash.se>2016-08-19 15:30:42 +0200
commit2597061f23374892991621a6201d2f681a92f89d (patch)
tree49e34d15ab539bf697a7e9348e80c9bc94302e55 /configure
parentb5955ba7af6da71f79de2f7c6162c31432caddb5 (diff)
downloadprosody-2597061f23374892991621a6201d2f681a92f89d.tar.gz
prosody-2597061f23374892991621a6201d2f681a92f89d.zip
configure: Respect Lua suffix in Debian preset if already set
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 6 insertions, 4 deletions
diff --git a/configure b/configure
index b91d0b37..7d7393b6 100755
--- a/configure
+++ b/configure
@@ -106,10 +106,12 @@ do
OSTYPE="$value"
OSTYPE_SET=yes
if [ "$OSTYPE" = "debian" ]; then
- LUA_SUFFIX="5.1";
- LUA_SUFFIX_SET=yes
- RUNWITH="lua5.1"
- LUA_INCDIR=/usr/include/lua5.1;
+ if [ "$LUA_SUFFIX_SET" != "yes" ]; then
+ 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 -D_GNU_SOURCE"
fi