[hackers] [tabbed] Add OpenBSD support to config.mk || Lucas Gabriel Vuotto

From: <git_AT_suckless.org>
Date: Sun, 11 Mar 2018 13:24:14 +0100 (CET)

commit b5f9ec647aae2d9a1d3bd586eb7523a4e0a329a3
Author: Lucas Gabriel Vuotto <lvuotto92_AT_gmail.com>
AuthorDate: Sat Mar 10 02:44:39 2018 -0300
Commit: Hiltjo Posthuma <hiltjo_AT_codemadness.org>
CommitDate: Sun Mar 11 13:21:25 2018 +0100

    Add OpenBSD support to config.mk
    
    Signed-off-by: Lucas Gabriel Vuotto <lgv_AT_nanashi.co>

diff --git a/config.mk b/config.mk
index 3a71529..29caa84 100644
--- a/config.mk
+++ b/config.mk
_AT_@ -7,9 +7,18 @@ VERSION = 0.6
 PREFIX = /usr/local
 MANPREFIX = ${PREFIX}/share/man
 
+X11INC = /usr/X11R6/include
+X11LIB = /usr/X11R6/lib
+
+# freetype
+FREETYPELIBS = -lfontconfig -lXft
+FREETYPEINC = /usr/include/freetype2
+# OpenBSD (uncomment)
+#FREETYPEINC = ${X11INC}/freetype2
+
 # includes and libs
-INCS = -I. -I/usr/include -I/usr/include/freetype2
-LIBS = -L/usr/lib -lc -lX11 -lfontconfig -lXft
+INCS = -I. -I/usr/include -I$(X11INC) -I${FREETYPEINC}
+LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${FREETYPELIBS}
 
 # flags
 CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
Received on Sun Mar 11 2018 - 13:24:14 CET

This archive was generated by hypermail 2.3.0 : Sun Mar 11 2018 - 13:36:21 CET