diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-11-26 19:53:21 -0800 |
---|---|---|
committer | david <david@david-desktop.(none)> | 2014-11-21 09:41:01 +0800 |
commit | ae9670c3822649f0880419ca8089c0d6ac343cfc (patch) | |
tree | 718362e9d224385e956fbca835533a57963116dc | |
parent | 7ba031a63f32255b4fba8298891ba56f12ee2242 (diff) | |
download | libsoup-ae9670c3822649f0880419ca8089c0d6ac343cfc.tar.gz libsoup-ae9670c3822649f0880419ca8089c0d6ac343cfc.tar.bz2 libsoup-ae9670c3822649f0880419ca8089c0d6ac343cfc.zip |
fixed Makefile.am for sqlite support
-rw-r--r-- | libsoup/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libsoup/Makefile.am b/libsoup/Makefile.am index 1594f885..daa2c63b 100644 --- a/libsoup/Makefile.am +++ b/libsoup/Makefile.am @@ -18,10 +18,6 @@ AM_CPPFLAGS = \ $(XML_CFLAGS) \ $(SQLITE_CFLAGS) -if SQLLITE_SUPPORT -soup_headers += \ - soup-cookie-jar-sqlite.h -endif libsoupincludedir = $(includedir)/libsoup-2.4/libsoup @@ -74,6 +70,11 @@ soup_headers = \ soup-value-utils.h \ soup-xmlrpc.h +if SQLLITE_SUPPORT +soup_headers += \ + soup-cookie-jar-sqlite.h +endif + libsoupinclude_HEADERS = \ $(soup_headers) \ soup-enum-types.h |