diff -u -r -N xfstt0910.orig/Makefile xfstt0910/Makefile
--- xfstt0910.orig/Makefile	Sun Oct 25 18:21:12 1998
+++ xfstt0910/Makefile	Wed Nov 11 11:17:18 1998
@@ -2,10 +2,25 @@
 MISCOPT =
 OPT = $(MISCOPT) $(MAXOPT)
 
-CFLAGS = $(OPT) -DMAGNIFY=0 -DNDEBUG
-#CFLAGS = -fprofile-arcs -ftest-coverage -DMAGNIFY=0
-CFLAGS = -g -Wall -pedantic $(MISCOPT) -DMAGNIFY=0
-#CFLAGS = -O -Wall -pedantic -DDEBUG $(MISCOPT)
+#Some local adjustments:
+
+# orginal places :
+#BINDIR=/usr/X11R6/bin
+#MAN = /usr/X11R6/man/man1
+#WINFONTS = /DOS/windows/fonts
+#TTFOTNDIR = /usr/ttfonts
+
+# in /usr/local :
+BINDIR=/usr/local/bin/X11
+MAN = /usr/local/man/man1
+WINFONTS = /W95/windows/fonts
+TTFONTDIR = /usr/local/lib/ttfonts
+
+
+CFLAGS = $(OPT) -DMAGNIFY=0 -DNDEBUG  -DTTFONTDIR=\"${TTFONTDIR}\"
+#CFLAGS = -fprofile-arcs -ftest-coverage -DMAGNIFY=0  -DTTFONTDIR=\"${TTFONTDIR}\"
+CFLAGS = -g -Wall -pedantic $(MISCOPT) -DMAGNIFY=0  -DTTFONTDIR=\"${TTFONTDIR}\"
+#CFLAGS = -O -Wall -pedantic -DDEBUG $(MISCOPT)  -DTTFONTDIR=\"${TTFONTDIR}\"
 
 LFLAGS = -L/usr/X11R6/lib -L/usr/openwin/lib/X11
 LFLAGS = -g -L/usr/X11R6/lib
@@ -41,10 +56,10 @@
 all : xfstt
 
 install :
-	mkdir /usr/ttfonts ;					\
-	ln -s /DOS/windows/fonts /usr/ttfonts/winfonts ;	\
-	cp xfstt /usr/X11R6/bin/ ;				\
-	cp xfstt.1x /usr/man/X11/man1/ ;			\
+	mkdir $(TTFONTDIR) ;					\
+	ln -s $(WINFONTS) $(TTFONTDIR)/winfonts ;	\
+	cp xfstt ${BINDIR} ;				\
+	cp xfstt.1x $(MAN) ;			\
 	xfstt --sync
 
 clean :
diff -u -r -N xfstt0910.orig/perftest.cpp xfstt0910/perftest.cpp
--- xfstt0910.orig/perftest.cpp	Sun Oct 25 18:21:12 1998
+++ xfstt0910/perftest.cpp	Wed Nov 11 11:20:57 1998
@@ -1,7 +1,10 @@
 // test ttf engine performance
 // (C) Copyright 1997-1998 Herbert Duerr
 
+#ifndef TTFONTDIR
 #define TTFONTDIR	"/usr/ttfonts"
+#endif /* TTFONTDIR */
+
 #define MAXFONTBUFSIZE (2048*2048)
 
 #include "ttf.h"
diff -u -r -N xfstt0910.orig/xfstt.cpp xfstt0910/xfstt.cpp
--- xfstt0910.orig/xfstt.cpp	Sun Oct 25 18:21:12 1998
+++ xfstt0910/xfstt.cpp	Wed Nov 11 11:22:46 1998
@@ -8,7 +8,9 @@
 // if you are sure your X11 server doesn't request more
 // than it can handle, increase the limit up to 65535
 #define UNSTRAPLIMIT	10500U
+#ifndef TTFONTDIR
 #define TTFONTDIR	"/usr/ttfonts"
+#endif /* TTFONTDIR  */
 
 #define MAXOPENFONTS 256
 #define MAXREPLYSIZE (1<<22)

