From c6817ff6c032e529f9cc00e4b5aed8b478c9b2f2 Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg <8147589-zander671@users.noreply.gitlab.com> Date: Mon, 12 Dec 2022 07:07:39 -0800 Subject: [PATCH] Add FreeBSD support to config.def.mk --- config.def.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config.def.mk b/config.def.mk index 1b65ea8..6f24ea3 100644 --- a/config.def.mk +++ b/config.def.mk @@ -20,6 +20,11 @@ FREETYPEINC = /usr/include/freetype2 # OpenBSD (uncomment) #FREETYPEINC = ${X11INC}/freetype2 +# FreeBSD (uncomment) +#X11INC = /usr/local/include +#X11LIB = /usr/local/lib +#FREETYPEINC = /usr/local/include/freetype2 + # includes and libs INCS = -I${X11INC} -I${FREETYPEINC} LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}