diff options
author | terminaldweller <thabogre@gmail.com> | 2022-07-04 18:44:40 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-07-04 18:44:40 +0000 |
commit | d7f50d26e3207136234adfae6965dcee749674fc (patch) | |
tree | 77db6903b92639bbd061dcbce16152ab48665fb0 /config.mk | |
parent | first commit (diff) | |
download | dwm-main.tar.gz dwm-main.zip |
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -10,6 +10,8 @@ MANPREFIX = ${PREFIX}/share/man X11INC = /usr/X11R6/include X11LIB = /usr/X11R6/lib +BDINC = /usr/include/fribidi + # Xinerama, comment if you don't want it XINERAMALIBS = -lXinerama XINERAMAFLAGS = -DXINERAMA @@ -20,9 +22,11 @@ FREETYPEINC = /usr/include/freetype2 # OpenBSD (uncomment) #FREETYPEINC = ${X11INC}/freetype2 +BDLIBS = -lfribidi + # includes and libs -INCS = -I${X11INC} -I${FREETYPEINC} -LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} +INCS = -I${X11INC} -I${FREETYPEINC} -I$(BDINC) +LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} $(BDLIBS) # flags CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} |