diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-08-22 14:59:51 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-08-22 14:59:51 +0200 |
commit | 62f6f2a911120b7718110ec8e5f38cf19466f50e (patch) | |
tree | c0be05691f40f7ce653f74bac3ab69cef4dd0179 | |
parent | d1ac6963bb9fb5ab694d39fc9140ed627723e1da (diff) |
config.mk: build compat strlcpy, strlcat by default (synced from OpenBSD)
-rw-r--r-- | config.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -23,9 +23,9 @@ LDFLAGS = -s ${LIBS} #LDFLAGS = -static -s ${LIBS} # uncomment for compat -#CFLAGS += -DCOMPAT -# uncomment if your libc doesn't support strlcat and strlcpy -#EXTRAOBJ = strlcat.o strlcpy.o +CFLAGS += -DCOMPAT +# uncomment if your libc doesn't support strlcat, strlcpy and strtonum. +EXTRAOBJ = strlcat.o strlcpy.o # compiler and linker #CC = cc |