From 4a7644f0eec04ea061b77f35a39d894ded93b8c8 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Sat, 14 Apr 2007 14:03:00 +0000 Subject: Enable user-Lua scripts by default for DOS and Windows builds. We could probably enable these by default for Mac OS builds as well. They should still default off for general Unix installs because we want server admins to be aware of the denial-of-service possibilities of enabling user scripts. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1308 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/makefile.dos | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/makefile.dos') diff --git a/crawl-ref/source/makefile.dos b/crawl-ref/source/makefile.dos index 83f2dc6b2c..e6a04b722b 100644 --- a/crawl-ref/source/makefile.dos +++ b/crawl-ref/source/makefile.dos @@ -31,7 +31,8 @@ INCLUDES := -Iutil -I. -I$(LUASRC) WORKDIR := $(shell cd) CFWARN := -Wall -Wwrite-strings -Wshadow -Werror -pedantic -CFOTHERS := -D$(OS_TYPE) $(EXTRA_FLAGS) -fsigned-char -fstrict-aliasing +CFOTHERS := -D$(OS_TYPE) $(EXTRA_FLAGS) -fsigned-char -fstrict-aliasing \ + -DCLUA_BINDINGS CFLAGS := $(INCLUDES) $(CFWARN) $(CFOTHERS) YCFLAGS := $(INCLUDES) $(CFOTHERS) -- cgit v1.2.3-54-g00ecf