diff options
Diffstat (limited to 'Lua/configure.ac')
-rw-r--r-- | Lua/configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lua/configure.ac b/Lua/configure.ac index 69e358fc..b7055ae6 100644 --- a/Lua/configure.ac +++ b/Lua/configure.ac @@ -224,7 +224,9 @@ PKG_HAVE([portmixer], [portmixer], no) AC_SUBST_DEFINE(HAVE_PORTMIXER, $portmixer_HAVE) # determine linker-flags -LDFLAGS="-undefined dynamic_lookup" +if test x$FPC_PLATFORM = xdarwin; then + LDFLAGS="-macosx_version_min 10.4 -undefined dynamic_lookup" +fi #LIBS= AC_SUBST(LDFLAGS) AC_SUBST(LIBS) |