author | Michael Krelin <hacker@klever.net> | 2008-01-13 16:36:52 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-01-13 16:36:52 (UTC) |
commit | 8e3201da1255e61a6e3fe5be02660c456591c761 (patch) (unidiff) | |
tree | 2a5d448366a4b2bfb1a5b6b537dc9583ad964808 /test/Makefile.am | |
parent | 7a6a6fbcf7e20f0d7da5f625a73c865b361f16aa (diff) | |
download | libopkele-8e3201da1255e61a6e3fe5be02660c456591c761.zip libopkele-8e3201da1255e61a6e3fe5be02660c456591c761.tar.gz libopkele-8e3201da1255e61a6e3fe5be02660c456591c761.tar.bz2 |
add libcurl includes to test Makefile
Thanks to Martin Wilke of FreeBSD for spotting the problem.
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | test/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 4b78087..0d1c0ef 100644 --- a/test/Makefile.am +++ b/test/Makefile.am | |||
@@ -1,12 +1,12 @@ | |||
1 | noinst_PROGRAMS = test | 1 | noinst_PROGRAMS = test |
2 | 2 | ||
3 | DEFAULT_INCLUDES = -I${top_builddir} | 3 | DEFAULT_INCLUDES = -I${top_builddir} |
4 | INCLUDES = -I${top_srcdir}/include/ ${KONFORKA_CFLAGS} | 4 | INCLUDES = -I${top_srcdir}/include/ ${KONFORKA_CFLAGS} ${LIBCURL_CPPFLAGS} |
5 | 5 | ||
6 | test_SOURCES = test.cc | 6 | test_SOURCES = test.cc |
7 | test_LDADD = ${top_builddir}/lib/libopkele.la | 7 | test_LDADD = ${top_builddir}/lib/libopkele.la |
8 | 8 | ||
9 | EXTRA_DIST=$(addsuffix .html,$(addprefix html/, \ | 9 | EXTRA_DIST=$(addsuffix .html,$(addprefix html/, \ |
10 | empty head-in-body hkn-delegate hkn-server hkn in-body \ | 10 | empty head-in-body hkn-delegate hkn-server hkn in-body \ |
11 | unclosed-head spaced-links spaced-link-attrs 2rels \ | 11 | unclosed-head spaced-links spaced-link-attrs 2rels \ |
12 | )) | 12 | )) |