diff options
author | Diego Nehab <diego@impa.br> | 2013-05-25 07:25:02 -0300 |
---|---|---|
committer | Diego Nehab <diego@impa.br> | 2013-05-25 07:25:02 -0300 |
commit | 22107bb9fcb3eef565b93fb00d8f2cc8849ba08e (patch) | |
tree | 178020133e03dc28e9ef0638037e4c6cf0d40777 | |
parent | 5d3a78b4a6ba5e71d526d62795f684c98eeee8eb (diff) | |
download | luasocket-22107bb9fcb3eef565b93fb00d8f2cc8849ba08e.tar.gz luasocket-22107bb9fcb3eef565b93fb00d8f2cc8849ba08e.tar.bz2 luasocket-22107bb9fcb3eef565b93fb00d8f2cc8849ba08e.zip |
Check linux build.
-rw-r--r-- | linux.cmd | 2 | ||||
-rw-r--r-- | src/makefile | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1 +1 @@ | |||
make PLAT=linux LUAV=5.2 DEBUG=DEBUG | make PLAT=linux DEBUG=DEBUG LUAINC_linux_base=/home/diego/build/linux/include LUAPREFIX_linux=/home/diego/build/linux | ||
diff --git a/src/makefile b/src/makefile index a6e0033..fbb26a0 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)/lua$(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 |
@@ -43,7 +43,7 @@ LDIR_macosx?=share/lua/$(LUAV) | |||
43 | # /usr/local/include/lua$(LUAV) | 43 | # /usr/local/include/lua$(LUAV) |
44 | # where lua headers are found for linux builds | 44 | # where lua headers are found for linux builds |
45 | LUAINC_linux_base?=/usr/include | 45 | LUAINC_linux_base?=/usr/include |
46 | LUAINC_linux?=$(LUAINC_linux_base)/lua$(LUAV) | 46 | LUAINC_linux?=$(LUAINC_linux_base)/lua/$(LUAV) |
47 | LUAPREFIX_linux?=/usr/local | 47 | LUAPREFIX_linux?=/usr/local |
48 | CDIR_linux?=lib/lua/$(LUAV) | 48 | CDIR_linux?=lib/lua/$(LUAV) |
49 | LDIR_linux?=share/lua/$(LUAV) | 49 | LDIR_linux?=share/lua/$(LUAV) |