diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-01-31 15:27:53 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-01-31 15:27:53 +0100 |
commit | fa635cfc925a95fe5c84569b043866dc3482ce90 (patch) | |
tree | 02e4a9a3024730b4387783b45ae66fdbe42477ac /Makefile | |
parent | 4b3f099a01635e99e1112c56906ae337c1bb0ba9 (diff) |
always add strlcpy, strlcat, remove COMPAT #ifdef
The overhead for OpenBSD is minimal. I will periodically sync from
OpenBSD libc.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -12,8 +12,7 @@ SRC = \ sfeed_web.c\ sfeed_xmlenc.c\ util.c\ - xml.c -COMPATSRC = \ + xml.c\ strlcat.c\ strlcpy.c BIN = \ @@ -48,11 +47,10 @@ DOC = \ README.xml\ TODO HDR = \ - compat.h\ util.h\ xml.h -OBJ = ${SRC:.c=.o} ${EXTRAOBJ} +OBJ = ${SRC:.c=.o} all: $(BIN) |