summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-07 16:15:12 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-07 16:15:12 +0000
commit0bfccc61e03f89a97f079519cba0aa0d9fb8c7c8 (patch)
tree5da47fd3e5f9c2a78b1bb2c0b544075a879d6e07
parente08c65894072dadd48aafd7e4b41b35c0a5aed91 (diff)
downloadcrawl-ref-0bfccc61e03f89a97f079519cba0aa0d9fb8c7c8.tar.gz
crawl-ref-0bfccc61e03f89a97f079519cba0aa0d9fb8c7c8.zip
Change UNICODE_GLYPHS handling to not modify EXTRA_FLAGS.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.3@2366 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/makefile.unix48
1 files changed, 24 insertions, 24 deletions
diff --git a/crawl-ref/source/makefile.unix b/crawl-ref/source/makefile.unix
index 88ad4ed4eb..94e0b9d4f0 100644
--- a/crawl-ref/source/makefile.unix
+++ b/crawl-ref/source/makefile.unix
@@ -50,30 +50,6 @@ INSTALLDIR := /usr/games/crawl
LEX := flex
YACC := bison -y
-ifeq ($(UNICODE_GLYPHS),y)
-# Include path for (n)curses with Unicode support.
-INCLUDES = -I/usr/include/ncursesw
-
-# Your ncurses library may include Unicode support, and you may not have a
-# separate libncursesw; in that case, change this line accordingly.
-LIBCURS = ncursesw
-EXTRA_FLAGS += -DUNICODE_GLYPHS
-
-ifneq ($(UNICODE_LOCALE),)
-EXTRA_FLAGS += -DUNICODE_LOCALE=\"$(UNICODE_LOCALE)\"
-endif
-
-# The standard ncurses library also supports Unicode on Mac OS/Darwin.
-ifeq ($(shell uname),Darwin)
-LIBCURS = ncurses
-endif
-
-else
-# Include path for curses or ncurses (non-Unicode).
-INCLUDES = -I/usr/include/ncurses
-LIBCURS = ncurses
-endif
-
LUASRC := util/lua/src
LUALIB = lua
LUALIBA = l$(LUALIB).a
@@ -126,6 +102,30 @@ ifneq ($(DATADIR),)
CFOTHERS += '-DDATA_DIR_PATH="$(DATADIR)"'
endif
+ifeq ($(UNICODE_GLYPHS),y)
+# Include path for (n)curses with Unicode support.
+INCLUDES += -I/usr/include/ncursesw
+
+# Your ncurses library may include Unicode support, and you may not have a
+# separate libncursesw; in that case, change this line accordingly.
+LIBCURS = ncursesw
+CFOTHERS += -DUNICODE_GLYPHS
+
+ifneq ($(UNICODE_LOCALE),)
+CFOTHERS += -DUNICODE_LOCALE=\"$(UNICODE_LOCALE)\"
+endif
+
+# The standard ncurses library also supports Unicode on Mac OS/Darwin.
+ifeq ($(shell uname),Darwin)
+LIBCURS = ncurses
+endif
+
+else
+# Include path for curses or ncurses (non-Unicode).
+INCLUDES += -I/usr/include/ncurses
+LIBCURS = ncurses
+endif
+
CFOTHERS += $(SELDBM)
CFLAGS := $(INCLUDES) $(CFWARN) $(CFOTHERS)