t* dwmstatus for OpenBSD
URI git clone git://git.codevoid.de/dwmstatus-sdk
DIR Log
DIR Files
DIR Refs
DIR LICENSE
---
DIR commit 284e83b7a08209da3b1c70fce10f9a7821f00044
DIR parent e0bea395b27a50936a4db59ecb34775067eab4f3
URI Author: Stefan Hagen <github@textmail.me>
Date: Sun, 20 May 2018 16:41:09 +0200
Add FreeBSD INCS/LIBS in config.mk
Diffstat:
M config.mk | 4 ++++
1 file changed, 4 insertions(+), 0 deletions(-)
---
DIR diff --git a/config.mk b/config.mk
t@@ -14,6 +14,10 @@ X11LIB = /usr/X11R6/lib
INCS = -I. -I/usr/include -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
+# FreeBSD (uncomment)
+INCS = -I. -I/usr/local/include -I${X11INC}
+LIBS = -L/usr/local/lib -lc -L${X11LIB} -lX11
+
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}