diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2013-05-05 22:58:53 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2013-05-05 22:58:53 +0000 |
commit | f866ddce120b62c5101acac09a5ce86c1e40a2d7 (patch) | |
tree | 2e32536a294d47095ea7069de7008d810cdd4a75 | |
parent | 045ec753fb97b0ab6d239c06caa0f2285c72afd7 (diff) | |
download | usdx-f866ddce120b62c5101acac09a5ce86c1e40a2d7.tar.gz usdx-f866ddce120b62c5101acac09a5ce86c1e40a2d7.tar.xz usdx-f866ddce120b62c5101acac09a5ce86c1e40a2d7.zip |
correct upppercase/lowercase of lua_lib_name
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2983 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/config-darwin.inc | 2 | ||||
-rw-r--r-- | src/config.inc.in | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -5049,7 +5049,7 @@ See the pkg-config man page for more details. fi fi -lua_LIB_NAME="lua5.2" +lua_lib_name="lua5.2" if [ x$lua_HAVE = xyes ]; then if test x$lua_HAVE = xyes; then diff --git a/configure.ac b/configure.ac index 3e6e40a8..9f6b39f8 100644 --- a/configure.ac +++ b/configure.ac @@ -178,7 +178,7 @@ PKG_HAVE([sqlite3], [sqlite3], yes) # (K)Ubuntu uses lua5.2.pc and lua5.1.pc, # Mac OS X and other linux distributions use lua.pc PKG_HAVE([lua], [lua5.2], check) -lua_LIB_NAME="lua5.2" +lua_lib_name="lua5.2" if [[ x$lua_HAVE = xyes ]]; then PKG_VERSION([lua], [lua5.2]) else diff --git a/src/config-darwin.inc b/src/config-darwin.inc index 181eda57..5edc33af 100644 --- a/src/config-darwin.inc +++ b/src/config-darwin.inc @@ -6,7 +6,7 @@ {* Libraries *} {$IF Defined(IncludeConstants)} - LUA_LIB_NAME = '@lua_LIB_NAME@'; + LUA_LIB_NAME = 'lua'; LUA_VERSION_INT = 5001004; LUA_VERSION_RELEASE = '4'; LUA_VERSION_MINOR = '1'; diff --git a/src/config.inc.in b/src/config.inc.in index 954d3416..aa336a1d 100644 --- a/src/config.inc.in +++ b/src/config.inc.in @@ -6,7 +6,7 @@ {* Libraries *} {$IF Defined(IncludeConstants)} - LUA_LIB_NAME = '@lua_LIB_NAME@'; + LUA_LIB_NAME = '@lua_lib_name@'; LUA_VERSION_INT = @lua_VERSION_INT@; LUA_VERSION_RELEASE = '@lua_VERSION_RELEASE@'; LUA_VERSION_MINOR = '@lua_VERSION_MINOR@'; |