summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorHenry Stiles <henry.stiles@artifex.com>2009-01-14 16:30:20 +0000
committerHenry Stiles <henry.stiles@artifex.com>2009-01-14 16:30:20 +0000
commit1512544a96e82c43e0bf11721ed8392d4e7518d4 (patch)
tree6aa600dc6764c53541570d7e467636f0e8f4e825 /main
parent228ed62089d6cd7c9353b54f5a7941cede2e0280 (diff)
Incorporate Norbert Janson's cygwin improvements. The sync device
should be nosync.dev and the x11 devices should not be included in the default build. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@9353 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'main')
-rw-r--r--main/pcl6_gcc.mak10
1 files changed, 7 insertions, 3 deletions
diff --git a/main/pcl6_gcc.mak b/main/pcl6_gcc.mak
index f54b68157..cc7a13171 100644
--- a/main/pcl6_gcc.mak
+++ b/main/pcl6_gcc.mak
@@ -10,7 +10,8 @@ MAKEFILE+= ../main/pcl6_gcc.mak
# Pick (uncomment) one font system technology ufst or afs (gs native)
#PL_SCALER?=ufst
-PL_SCALER?=afs
+#PL_SCALER?=afs
+PL_SCALER?=ft
# define if this is a cygwin system.
CYGWIN?=
@@ -153,6 +154,10 @@ UFSTFONTDIR?=%rom%fontdata/
endif
endif # PL_SCALER = ufst
+ifeq ($(PL_SCALER), ft)
+FT_INCLUDES=-I../gs/freetype/include/
+endif
+
# flags for artifex scaler
ifeq ($(PL_SCALER), afs)
UFST_BRIDGE?=
@@ -220,11 +225,10 @@ FEATURE_DEVS?=$(DD)colimlib.dev $(DD)dps2lib.dev $(DD)path1lib.dev\
# cygwin does not have threads at this time, so we don't include the
# thread library
ifeq ($(CYGWIN), TRUE)
-SYNC=
+SYNC=nosync
CFLAGS+=-DHAVE_STDINT_H
STDLIBS=-lm
DEVICE_DEVS=$(DEVICES_DEVS)
-DEVICE_DEVS=$(DD)x11.dev $(DD)x11alpha.dev $(DD)x11mono.dev $(DD)x11cmyk.dev $(DEVICES_DEVS)
else