Browse Source

config.mk: add $FREETYPELIBS and $FREETYPEINC, simpler to override (ports and *BSDs)

master
Hiltjo Posthuma 9 years ago
parent
commit
40529e1469
1 changed files with 8 additions and 2 deletions
  1. +8
    -2
      config.mk

+ 8
- 2
config.mk View File

@ -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}


Loading…
Cancel
Save