diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-11-22 22:00:51 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-11-22 22:00:51 +0000 |
commit | 21f5a7d22b1fd12db09d73b306927badb8cd33e7 (patch) | |
tree | 9ab3c85fd8897d341a68877fd5de222de95303fa /configure | |
parent | 91bb1d1517faa4b1abe25d2e0adc7cbaecb6b84d (diff) | |
download | usdx-21f5a7d22b1fd12db09d73b306927badb8cd33e7.tar.gz usdx-21f5a7d22b1fd12db09d73b306927badb8cd33e7.tar.xz usdx-21f5a7d22b1fd12db09d73b306927badb8cd33e7.zip |
relax the linker conditions for failure for linking sqlite3 on Mac OS X 10.4, which does not have a recent enough version, but the missing symbol is not used by USDX.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1953 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rwxr-xr-x | configure | 5 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 4 insertions, 3 deletions
@@ -6258,7 +6258,7 @@ See the pkg-config man page for more details. # determine linker-flags -#LDFLAGS= +LDFLAGS="-undefined dynamic_lookup" #LIBS= @@ -6937,7 +6937,8 @@ $debug || if test -n "$CONFIG_FILES"; then -ac_cr='
' +ac_cr=' +' ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' diff --git a/configure.ac b/configure.ac index 7d643c9b..69e358fc 100644 --- a/configure.ac +++ b/configure.ac @@ -224,7 +224,7 @@ PKG_HAVE([portmixer], [portmixer], no) AC_SUBST_DEFINE(HAVE_PORTMIXER, $portmixer_HAVE) # determine linker-flags -#LDFLAGS= +LDFLAGS="-undefined dynamic_lookup" #LIBS= AC_SUBST(LDFLAGS) AC_SUBST(LIBS) |