diff options
author | 2021-03-19 10:36:44 +0100 | |
---|---|---|
committer | 2021-03-19 10:41:08 +0100 | |
commit | 0506560b163382ccdeb724575fcc982fbbbafcb2 (patch) | |
tree | d732e7b0a46fa218ce08e25e8617bfeab93e4aa7 /config.mk | |
parent | 61bb8b2241d4db08bea4261c82e27cd9797099e7 (diff) | |
download | dwm-0506560b163382ccdeb724575fcc982fbbbafcb2.tar.gz dwm-0506560b163382ccdeb724575fcc982fbbbafcb2.zip |
Fix config.mk to compile on FreeBSD
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,8 +7,8 @@ VERSION = 6.2 PREFIX = /usr/local MANPREFIX = ${PREFIX}/share/man -X11INC = /usr/X11R6/include -X11LIB = /usr/X11R6/lib +X11INC = /usr/local/include +X11LIB = /usr/local/lib # Xinerama, comment if you don't want it XINERAMALIBS = -lXinerama @@ -16,7 +16,7 @@ XINERAMAFLAGS = -DXINERAMA # freetype FREETYPELIBS = -lfontconfig -lXft -FREETYPEINC = /usr/include/freetype2 +FREETYPEINC = /usr/local/include/freetype2 # OpenBSD (uncomment) #FREETYPEINC = ${X11INC}/freetype2 |