aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xconfigure4
-rw-r--r--configure.ac3
2 files changed, 7 insertions, 0 deletions
diff --git a/configure b/configure
index 97d41e66..4d70de01 100755
--- a/configure
+++ b/configure
@@ -641,6 +641,7 @@ libavcodec_VERSION_RELEASE
libavcodec_VERSION_MINOR
libavcodec_VERSION_MAJOR
libavcodec_VERSION
+lua_LIB_NAME
DARWIN_VERSION
MACOSX_VERSION
MACOSX_VERSION_INT
@@ -4911,6 +4912,7 @@ See the pkg-config man page for more details.
fi
fi
+lua_LIB_NAME="lua5.1"
if [ x$lua_HAVE = xno ]; then
have_lib="no"
@@ -4984,8 +4986,10 @@ See the pkg-config man page for more details.
fi
fi
+ lua_LIB_NAME="lua"
fi
+
# find FFMpeg
# Note: do not use the min/max version parameters with ffmpeg
# otherwise it might fail in ubuntu due to a wrong version number
diff --git a/configure.ac b/configure.ac
index 8f9f6e11..e0846256 100644
--- a/configure.ac
+++ b/configure.ac
@@ -170,9 +170,12 @@ PKG_HAVE([sqlite3], [sqlite3], yes)
# (K)Ubuntu uses lua5.1.pc, Mac OS X and other
# linux distributions use lua.pc
PKG_HAVE([lua], [lua5.1], no)
+lua_LIB_NAME="lua5.1"
if [[ x$lua_HAVE = xno ]]; then
PKG_HAVE([lua], [lua >= 5.1], yes)
+ lua_LIB_NAME="lua"
fi
+AC_SUBST(lua_LIB_NAME)
# find FFMpeg
# Note: do not use the min/max version parameters with ffmpeg