diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-07 12:37:06 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-07 12:37:06 +0100 |
commit | 28ffff801bb0137ec3fe4093afc4fb29784b17ec (patch) | |
tree | 2072e2465fb0b3cbf4f3241a096de99752e79be1 /config.mk | |
parent | 44ef3f5a07753ecaeacc2fb180e90bf4479ab975 (diff) | |
download | dwm-28ffff801bb0137ec3fe4093afc4fb29784b17ec.tar.gz |
replaced getproto with a saner function, now old-school artifacts of WM times in the early 90s completely disappeared, no punned pointer warning anymore ;)
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.mk b/config.mk index 338632d..2e5630a 100644 --- a/config.mk +++ b/config.mk @@ -17,8 +17,8 @@ LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 # flags CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" LDFLAGS = ${LIBS} -#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" -#LDFLAGS = -g ${LIBS} +CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" +LDFLAGS = -g ${LIBS} # Solaris #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" |