aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2012-04-06 16:38:01 +0100
committerConnor Lane Smith <cls@lubutu.com>2012-04-06 16:38:01 +0100
commit38fccafada4eee3e4e0301d7c6eadd3c5788b305 (patch)
tree1badf7ad57757ba18c9b39b8457d337991ad4363
parent1f11faf7b505ac94bee1242e90dbd3ae37a086b4 (diff)
_POSIX_C_SOURCE=200809L
-rw-r--r--config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mk b/config.mk
index ca89fd6..c0d466b 100644
--- a/config.mk
+++ b/config.mk
@@ -17,7 +17,7 @@ INCS = -I${X11INC}
17LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} 17LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS}
18 18
19# flags 19# flags
20CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} 20CPPFLAGS = -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
21CFLAGS = -ansi -pedantic -Wall -Os ${INCS} ${CPPFLAGS} 21CFLAGS = -ansi -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
22LDFLAGS = -s ${LIBS} 22LDFLAGS = -s ${LIBS}
23 23