diff options
author | 2023-03-03 12:03:06 +0100 | |
---|---|---|
committer | 2023-03-03 12:03:06 +0100 | |
commit | 55529815550b8f556398f147d21931f1181d948f (patch) | |
tree | 795550f72273b306fee97418e8ee0ac838b3e922 /config.mk | |
parent | 343a754ede81c98e97b1afbb0697ecf2638fd4ff (diff) | |
parent | 348f6559ab0d4793db196ffa56ba96ab95a594a6 (diff) | |
download | dwm-55529815550b8f556398f147d21931f1181d948f.tar.gz dwm-55529815550b8f556398f147d21931f1181d948f.zip |
Merge branch 'master' into custom
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ # dwm version -VERSION = 6.2 +VERSION = 6.4 # Customize below to fit your system @@ -19,13 +19,14 @@ FREETYPELIBS = -lfontconfig -lXft FREETYPEINC = /usr/local/include/freetype2 # OpenBSD (uncomment) #FREETYPEINC = ${X11INC}/freetype2 +#MANPREFIX = ${PREFIX}/man # includes and libs INCS = -I${X11INC} -I${FREETYPEINC} LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} # flags -CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} +CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} #CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS} LDFLAGS = ${LIBS} |