diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-02-08 19:32:25 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-02-08 19:38:23 +0100 |
commit | 3e39c526d28582b0b5606d3e3bb36ee3d271e616 (patch) | |
tree | 7052e43bfcaa5835232c922f9da9232832e5da67 /config.mk | |
parent | a9a3836861bd23387b5a51d6f6ac23377e98e26f (diff) |
revert using strcasestr and use a more optimized portable version
... compared to the old cistrstr().
Thanks for the feedback!
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ INCS = -I$(X11INC) -I$(FREETYPEINC) LIBS = -L$(X11LIB) -lX11 $(XINERAMALIBS) $(FREETYPELIBS) # flags -CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"$(VERSION)\" $(XINERAMAFLAGS) +CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"$(VERSION)\" $(XINERAMAFLAGS) CFLAGS = -std=c99 -pedantic -Wall -Os $(INCS) $(CPPFLAGS) LDFLAGS = $(LIBS) |