From 7767a0133c5c8945a887b06061aae332446f37bb Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Tue, 14 Aug 2012 22:00:47 +0200 Subject: * removed the search for MSVCR80.DLL when building for MinGW32 since it no longer seems to be necessary --- src/Makefile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/Makefile b/src/Makefile index a16acce..c6ab644 100644 --- a/src/Makefile +++ b/src/Makefile @@ -36,15 +36,8 @@ ifeq "$(LUAROCKS)" "" ifeq "$(LUA_DEV)" "" $(error LUA_DEV not defined - try i.e. 'make LUA_DEV=/c/Program\ Files/Lua/5.1') endif - ifeq "$(MSVCR80)" "" - MSVCR80:=$(LUA_DEV)/install/support/Microsoft.VC80.CRT.SP1/MSVCR80.DLL - ifneq '$(shell test -f "$(MSVCR80)" && echo found)' 'found' - $(error MSVCR80 not defined - set it to full path of msvcr80.dll') - endif - $(warning MSVCR80=$(MSVCR80)) - endif LUA_FLAGS:=-I "$(LUA_DEV)/include" - LUA_LIBS:="$(LUA_DEV)/lua5.1.dll" -lgcc -lmsvcr80 "$(MSVCR80)" + LUA_LIBS:="$(LUA_DEV)/lua5.1.dll" -lgcc LIBFLAG=-shared -Wl,-Map,lanes.map else # Autodetect LUA_FLAGS and/or LUA_LIBS -- cgit v1.2.3-55-g6feb