diff options
author | Diego Nehab <diego.nehab@gmail.com> | 2019-03-09 23:23:48 -0300 |
---|---|---|
committer | Diego Nehab <diego.nehab@gmail.com> | 2019-03-09 23:23:48 -0300 |
commit | 03b72d8f7ee5e35f76f97da299ce676946023725 (patch) | |
tree | 0152020a11181e4f01c2fcb855d58f8e36559dd9 /src/makefile | |
parent | c7215bef07cb855844d1da42d2e64c5be869d5b7 (diff) | |
download | luasocket-03b72d8f7ee5e35f76f97da299ce676946023725.tar.gz luasocket-03b72d8f7ee5e35f76f97da299ce676946023725.tar.bz2 luasocket-03b72d8f7ee5e35f76f97da299ce676946023725.zip |
Use static initialization
This helps with multi-threaded apps.
Diffstat (limited to 'src/makefile')
-rwxr-xr-x | src/makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/makefile b/src/makefile index e6baf78..b9e2f93 100755 --- a/src/makefile +++ b/src/makefile | |||
@@ -35,7 +35,8 @@ DEBUG?=NODEBUG | |||
35 | # LUAINC_macosx: | 35 | # LUAINC_macosx: |
36 | # /opt/local/include | 36 | # /opt/local/include |
37 | LUAINC_macosx_base?=/opt/local/include | 37 | LUAINC_macosx_base?=/opt/local/include |
38 | LUAINC_macosx?=$(LUAINC_macosx_base)/lua/$(LUAV) $(LUAINC_macosx_base)/lua$(LUAV) | 38 | LUAINC_macosx?=$(LUAINC_macosx_base)/lua/$(LUAV) $(LUAINC_macosx_base)/lua$(LUAV) $(LUAINC_macosx_base)/lua-$(LUAV) |
39 | |||
39 | # FIXME default should this default to fink or to macports? | 40 | # FIXME default should this default to fink or to macports? |
40 | # What happens when more than one Lua version is installed? | 41 | # What happens when more than one Lua version is installed? |
41 | LUAPREFIX_macosx?=/opt/local | 42 | LUAPREFIX_macosx?=/opt/local |