diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-10-16 16:03:21 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-10-24 16:00:51 +0200 |
commit | f05b427265e20ccb43889094e4c58c1a5bf3e290 (patch) | |
tree | 288cb6436f7af1a50a592e377327dc678bbe29f7 /src/libstrongswan/Makefile.am | |
parent | d5c143e5be0fb4beefe6a2da1f0f181bf4468883 (diff) | |
download | strongswan-f05b427265e20ccb43889094e4c58c1a5bf3e290.tar.bz2 strongswan-f05b427265e20ccb43889094e4c58c1a5bf3e290.tar.xz |
Moved debug.[ch] to utils folder
Diffstat (limited to 'src/libstrongswan/Makefile.am')
-rw-r--r-- | src/libstrongswan/Makefile.am | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/libstrongswan/Makefile.am b/src/libstrongswan/Makefile.am index 153f6c9d4..205cb6467 100644 --- a/src/libstrongswan/Makefile.am +++ b/src/libstrongswan/Makefile.am @@ -1,7 +1,7 @@ ipseclib_LTLIBRARIES = libstrongswan.la libstrongswan_la_SOURCES = \ -library.c debug.c settings.c \ +library.c settings.c \ asn1/asn1.c asn1/asn1_parser.c asn1/oid.c bio/bio_reader.c bio/bio_writer.c \ collections/blocking_queue.c collections/enumerator.c collections/hashtable.c \ collections/linked_list.c \ @@ -28,13 +28,14 @@ pen/pen.c plugins/plugin_loader.c plugins/plugin_feature.c processing/jobs/job.c processing/jobs/callback_job.c processing/processor.c processing/scheduler.c \ selectors/traffic_selector.c threading/thread.c threading/thread_value.c \ threading/mutex.c threading/semaphore.c threading/rwlock.c threading/spinlock.c \ -utils.c utils/chunk.c utils/enum.c utils/identification.c utils/lexparser.c \ -utils/optionsfrom.c utils/capabilities.c utils/backtrace.c utils/printf_hook.c +utils.c utils/chunk.c utils/debug.c utils/enum.c utils/identification.c \ +utils/lexparser.c utils/optionsfrom.c utils/capabilities.c utils/backtrace.c \ +utils/printf_hook.c if USE_DEV_HEADERS strongswan_includedir = ${dev_headers} nobase_strongswan_include_HEADERS = \ -library.h debug.h settings.h \ +library.h settings.h \ asn1/asn1.h asn1/asn1_parser.h asn1/oid.h bio/bio_reader.h bio/bio_writer.h \ collections/blocking_queue.h collections/enumerator.h collections/hashtable.h \ collections/linked_list.h \ @@ -68,8 +69,8 @@ processing/scheduler.h selectors/traffic_selector.h \ threading/thread.h threading/thread_value.h \ 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/chunk.h utils/enum.h utils/identification.h utils/lexparser.h \ -utils/optionsfrom.h utils/capabilities.h utils/backtrace.h \ +utils.h utils/chunk.h utils/debug.h utils/enum.h utils/identification.h \ +utils/lexparser.h utils/optionsfrom.h utils/capabilities.h utils/backtrace.h \ utils/leak_detective.h utils/printf_hook.h utils/integrity_checker.h endif |