diff options
author | Martin Willi <martin@revosec.ch> | 2012-10-02 11:38:42 +0200 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2012-10-02 11:39:55 +0200 |
commit | 9564f9eb6e5567d39aa1ed9f4de89144f82f69f1 (patch) | |
tree | 4890b699cd5e51151560651383a2481ec983e0f1 | |
parent | c8697a7170d96cd242d251d013b2a846f7e354f0 (diff) | |
download | strongswan-9564f9eb6e5567d39aa1ed9f4de89144f82f69f1.tar.bz2 strongswan-9564f9eb6e5567d39aa1ed9f4de89144f82f69f1.tar.xz |
Include all dev headers, even if they are configuration specific
-rw-r--r-- | src/libstrongswan/Makefile.am | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/libstrongswan/Makefile.am b/src/libstrongswan/Makefile.am index 4aee12c2e..463d57d95 100644 --- a/src/libstrongswan/Makefile.am +++ b/src/libstrongswan/Makefile.am @@ -63,7 +63,8 @@ threading/mutex.h threading/condvar.h threading/spinlock.h threading/semaphore.h threading/rwlock.h threading/rwlock_condvar.h threading/lock_profiler.h \ utils.h utils/host.h utils/packet.h utils/identification.h utils/lexparser.h \ utils/linked_list.h utils/blocking_queue.h utils/hashtable.h utils/enumerator.h \ -utils/optionsfrom.h utils/capabilities.h utils/backtrace.h utils/tun_device.h +utils/optionsfrom.h utils/capabilities.h utils/backtrace.h utils/tun_device.h \ +utils/leak_detective.h integrity_checker.h endif library.lo : $(top_builddir)/config.status @@ -79,8 +80,7 @@ AM_CFLAGS = \ if USE_LEAK_DETECTIVE AM_CFLAGS += -DLEAK_DETECTIVE - libstrongswan_la_SOURCES += \ - utils/leak_detective.c utils/leak_detective.h + libstrongswan_la_SOURCES += utils/leak_detective.c endif if USE_LOCK_PROFILER @@ -89,8 +89,7 @@ endif if USE_INTEGRITY_TEST AM_CFLAGS += -DINTEGRITY_TEST - libstrongswan_la_SOURCES += \ - integrity_checker.c integrity_checker.h + libstrongswan_la_SOURCES += integrity_checker.c endif if USE_VSTR |