You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
869 B
26 lines
869 B
--- config.mk |
|
+++ config.mk |
|
@@ -10,12 +10,20 @@ MANPREFIX = ${PREFIX}/share/man |
|
X11INC = /usr/X11R6/include |
|
X11LIB = /usr/X11R6/lib |
|
|
|
+# Xinerama, comment if you don't want it |
|
+XINERAMALIBS = -lXinerama |
|
+XINERAMAFLAGS = -DXINERAMA |
|
+ |
|
+# freetype |
|
+FREETYPELIBS = -lXft |
|
+FREETYPEINC = /usr/include/freetype2 |
|
+ |
|
# includes and libs |
|
-INCS = -I. -I/usr/include -I${X11INC} |
|
-LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext -lXrandr |
|
+INCS = -I. -I/usr/include -I${X11INC} -I${FREETYPEINC} |
|
+LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lXext -lXrandr |
|
|
|
# flags |
|
-CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE -DHAVE_SHADOW_H |
|
+CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE -DHAVE_SHADOW_H ${XINERAMAFLAGS} |
|
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} |
|
LDFLAGS = -s ${LIBS} |
|
COMPATSRC = explicit_bzero.c
|
|
|