diff options
author | Joshua Root <jmr@macports.org> | 2019-05-21 07:42:32 +1000 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2020-04-20 21:36:11 -0300 |
commit | 58cf8c9449f9e7764a31f43bc70a36fbbcd58bc8 (patch) | |
tree | 29c36e23444ad3dafad00424b2b8d36eca1419b7 /config | |
parent | 04ba8d686ab0e6ee7daaea092800ea44fcef40b5 (diff) | |
download | luafilesystem-58cf8c9449f9e7764a31f43bc70a36fbbcd58bc8.tar.gz luafilesystem-58cf8c9449f9e7764a31f43bc70a36fbbcd58bc8.tar.bz2 luafilesystem-58cf8c9449f9e7764a31f43bc70a36fbbcd58bc8.zip |
Make MACOSX_DEPLOYMENT_TARGET configurable
Also increase the default target to 10.5, since Xcode 10 can no longer
target 10.3.
Diffstat (limited to '')
-rw-r--r-- | config | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -14,6 +14,9 @@ LUA_INC += -I/usr/include/lua5.1 | |||
14 | LIB_OPTION= -shared #for Linux | 14 | LIB_OPTION= -shared #for Linux |
15 | #LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X | 15 | #LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X |
16 | 16 | ||
17 | # Minimum runtime OS version on macOS | ||
18 | MACOSX_DEPLOYMENT_TARGET= 10.5 | ||
19 | |||
17 | LIBNAME= $T.so.$V | 20 | LIBNAME= $T.so.$V |
18 | 21 | ||
19 | # Compilation directives | 22 | # Compilation directives |