diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2014-04-02 18:01:39 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2014-04-02 18:01:39 +0200 |
commit | b3f1118843f365fea5946033758278be9260cfb3 (patch) | |
tree | 2b524e18709dfee93e6d26a3505db93d8f10d02c | |
parent | 4b4ca37b90478ea68d89d4ed7d4e2ecb6484107f (diff) |
sfeed_opml_import: fix build
Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | sfeed_opml_import.c | 1 |
2 files changed, 3 insertions, 2 deletions
@@ -26,9 +26,9 @@ sfeed: sfeed.o xml.o util.o @echo CC -o $@ @${CC} -o $@ sfeed.o xml.o util.o ${LDFLAGS} -sfeed_opml_import: sfeed_opml_import.o xml.o +sfeed_opml_import: sfeed_opml_import.o xml.o util.o @echo CC -o $@ - @${CC} -o $@ sfeed_opml_import.o xml.o ${LDFLAGS} + @${CC} -o $@ sfeed_opml_import.o xml.o util.o ${LDFLAGS} sfeed_plain: sfeed_plain.o util.o @echo CC -o $@ diff --git a/sfeed_opml_import.c b/sfeed_opml_import.c index cce73a3..f472cb0 100644 --- a/sfeed_opml_import.c +++ b/sfeed_opml_import.c @@ -4,6 +4,7 @@ #include <string.h> #include <strings.h> +#include "util.h" #include "xml.h" static XMLParser parser; /* XML parser state */ |