aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Peach <mrpeach@users.sourceforge.net>2011-03-28 01:44:57 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 14:28:31 +0200
commitab516db4fb8c5adab4299d5b038ddff8a7f211d5 (patch)
treed39078151b544e630c8f447e18070e77bbc89713
parenteabc712c4fd11492b81691b62a8f5c127112bef6 (diff)
Changed the lib and include path for MinGW to match the default lua install. Might need to specify -L/usr/local/lib as well.
svn path=/trunk/externals/loaders/pdlua/; revision=15049
-rw-r--r--src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 274f2eb..ed7ae23 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -214,8 +214,8 @@ ifeq (MINGW,$(findstring MINGW,$(UNAME)))
CFLAGS += -mms-bitfields
LDFLAGS += -s -shared -Wl,--enable-auto-import
LIBS += -L"$(PD_PATH)/src" -L"$(PD_PATH)/bin" -L"$(PD_PATH)/obj" -lpd -lwsock32 -lkernel32 -luser32 -lgdi32
- LUACFLAGS += -I/usr/include/lua # lua is named differently on every platform, check this and change it to fit
- LIBS += -llua51.dll # lua is named differently on every platform, check this and change it to fit
+ LUACFLAGS += -I/usr/local/include # lua is named differently on every platform, check this and change it to fit
+ LIBS += -llua # lua is named differently on every platform, check this and change it to fit
STRIP = strip --strip-unneeded -R .note -R .comment
DISTBINDIR=$(DISTDIR)-$(OS)
endif