Added xft support (smooth fonts)
[xmenu] / config.mk
index 05c1e81..f86aa34 100644 (file)
--- a/config.mk
+++ b/config.mk
@@ -8,9 +8,14 @@ MANPREFIX = ${PREFIX}/share/man
 X11INC = /usr/X11R6/include
 X11LIB = /usr/X11R6/lib
 
 X11INC = /usr/X11R6/include
 X11LIB = /usr/X11R6/lib
 
+FREETYPEINC = /usr/include/freetype2
+FREETYPELIB = -lfontconfig -lXft
+# OpenBSD (uncomment)
+#FREETYPEINC = $(X11INC)/freetype2
+
 # includes and libs
 # includes and libs
-INCS = -I${X11INC}
-LIBS = -L${X11LIB} -lX11
+INCS = -I${X11INC} -I${FREETYPEINC}
+LIBS = -L${X11LIB} -L${FREETYPELIB} -lX11
 
 # flags
 CPPFLAGS =
 
 # flags
 CPPFLAGS =