diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-10-20 23:01:49 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-10-20 23:01:49 +0200 |
commit | 40529e1469b399114048185e1d5b7237b1cc7f3e (patch) | |
tree | ded5ea631b5424d8120becf902dfb35af982f46c /config.mk | |
parent | 14343e69cc596b847f71f1e825d3019ab1a29aa8 (diff) |
config.mk: add $FREETYPELIBS and $FREETYPEINC, simpler to override (ports and *BSDs)
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -14,9 +14,15 @@ X11LIB = /usr/X11R6/lib XINERAMALIBS = -lXinerama XINERAMAFLAGS = -DXINERAMA +# freetype +FREETYPELIBS = -lfontconfig -lXft +FREETYPEINC = /usr/include/freetype2 +# OpenBSD (uncomment) +#FREETYPEINC = ${X11INC}/freetype2 + # includes and libs -INCS = -I${X11INC} -I/usr/include/freetype2 -LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} -lfontconfig -lXft +INCS = -I${X11INC} -I${FREETYPEINC} +LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} # flags CPPFLAGS = -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} |