Implemented an alternative HTTP fetcher based on libsoup

This commit is contained in:
Martin Willi
2011-01-17 18:20:06 +01:00
parent a8a7a31700
commit 2ca52c8048
7 changed files with 352 additions and 2 deletions
@@ -0,0 +1,16 @@
INCLUDES = -I$(top_srcdir)/src/libstrongswan ${soup_CFLAGS}
AM_CFLAGS = -rdynamic
if MONOLITHIC
noinst_LTLIBRARIES = libstrongswan-soup.la
else
plugin_LTLIBRARIES = libstrongswan-soup.la
endif
libstrongswan_soup_la_SOURCES = \
soup_plugin.h soup_plugin.c soup_fetcher.c soup_fetcher.h
libstrongswan_soup_la_LDFLAGS = -module -avoid-version
libstrongswan_soup_la_LIBADD = ${soup_LIBS}