From 11a81c6b5082101475fa6f0a1089c5bb559e7782 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Sat, 21 May 2022 12:33:59 -0400 Subject: [PATCH] Fix typo - Change `config.jk` to `config.mk` in README.org - Add changes to `config.jk` in README.org to reflect current config.mk from merge --- README.org | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index 782aab8..7458e90 100644 --- a/README.org +++ b/README.org @@ -3240,7 +3240,7 @@ This can be optionally disabled in favour of other layouts. ** Make Config -#+BEGIN_SRC makefile :tangle config.jk +#+BEGIN_SRC makefile :tangle config.mk # dwm version VERSION = 6.3 @@ -3289,11 +3289,14 @@ YAJLINC = -I/usr/include/yajl #XEXTLIB = -lXext # Uncomment this for the swallow patch / SWALLOW_PATCH -# XCBLIBS = -lX11-xcb -lxcb -lxcb-res +XCBLIBS = -lX11-xcb -lxcb -lxcb-res + +# This is needed for the winicon patch / BAR_WINICON_PATCH +#IMLIB2LIBS = -lImlib2 # includes and libs INCS = -I${X11INC} -I${FREETYPEINC} ${YAJLINC} ${PANGOINC} -LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} ${XRENDER} ${MPDCLIENT} ${XEXTLIB} ${XCBLIBS} ${KVMLIB} ${PANGOLIB} ${YAJLLIBS} +LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} ${XRENDER} ${MPDCLIENT} ${XEXTLIB} ${XCBLIBS} ${KVMLIB} ${PANGOLIB} ${YAJLLIBS} ${IMLIB2LIBS} # flags CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}