diff options
author | Diego Nehab <diego@fresnel.local> | 2012-08-01 03:06:09 -0300 |
---|---|---|
committer | Diego Nehab <diego@fresnel.local> | 2012-08-01 03:06:09 -0300 |
commit | f329aae724573b87bd2a814f4858d29ca894600b (patch) | |
tree | 31bbbce37e8e4f03e44a556943298d1136579caf /src/makefile | |
parent | 54ffcd483f8357f7916225ab775f1773452bfe42 (diff) | |
download | luasocket-f329aae724573b87bd2a814f4858d29ca894600b.tar.gz luasocket-f329aae724573b87bd2a814f4858d29ca894600b.tar.bz2 luasocket-f329aae724573b87bd2a814f4858d29ca894600b.zip |
Fix HORRIBLE but in b64/qp code.
Bug was caught by user moteus.
Code was checking if arguments was nil after using
luaL_Buffer code, which messes with the stack.
Simple to fix, though.
Diffstat (limited to 'src/makefile')
-rw-r--r-- | src/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile b/src/makefile index 1363bc0..7e5f2e2 100644 --- a/src/makefile +++ b/src/makefile | |||
@@ -29,7 +29,7 @@ DEBUG?=NODEBUG | |||
29 | # LUAINC_macosx: | 29 | # LUAINC_macosx: |
30 | # /opt/local/include | 30 | # /opt/local/include |
31 | LUAINC_macosx_base?=/opt/local/include | 31 | LUAINC_macosx_base?=/opt/local/include |
32 | LUAINC_macosx?=$(LUAINC_macosx_base)$(LUAV) | 32 | LUAINC_macosx?=$(LUAINC_macosx_base)/lua$(LUAV) |
33 | # FIXME default should this default to fink or to macports? | 33 | # FIXME default should this default to fink or to macports? |
34 | # What happens when more than one Lua version is installed? | 34 | # What happens when more than one Lua version is installed? |
35 | LUAPREFIX_macosx?=/opt/local/ | 35 | LUAPREFIX_macosx?=/opt/local/ |