change default configurations on systems with UNIX domain sockets to NOT specify...
[oweals/gnunet.git] / src / util / Makefile.am
index 02f823442523c45fae91a96e4c8de531d2c9df9c..7f2e0cd48f02b77fd84de1f31583de34612da366 100644 (file)
@@ -2,6 +2,14 @@ INCLUDES = -I$(top_srcdir)/src/include -I$(top_builddir)/src/include
 
 plugindir = $(libdir)/gnunet
 
+pkgcfgdir= $(pkgdatadir)/config.d/
+
+dist_pkgcfg_DATA = \
+  util.conf 
+
+pkgcfg_DATA = \
+  resolver.conf
+
 if MINGW
 noinst_LTLIBRARIES = \
   libgnunetutilwin.la
@@ -9,10 +17,10 @@ libgnunetutilwin_la_SOURCES = \
   win.cc \
   winproc.c
 libgnunetutilwin_la_LDFLAGS = \
-  -Wl,--no-undefined -Wl,--export-all-symbols 
+  -no-undefined -Wl,--export-all-symbols 
 libgnunetutilwin_la_LIBADD = \
   -lshell32 -liconv -lstdc++ \
-  -lcomdlg32 -lgdi32
+  -lcomdlg32 -lgdi32 -liphlpapi
 WINLIB = libgnunetutilwin.la
 endif
 
@@ -26,7 +34,8 @@ if USE_COVERAGE
 endif
 
 noinst_PROGRAMS = \
- gnunet-config-diff
+ gnunet-config-diff \
+ test_common_logging_dummy
 
 gnunet_config_diff_SOURCES = \
  gnunet-config-diff.c
@@ -35,6 +44,12 @@ gnunet_config_diff_LDADD = \
 gnunet_config_diff_DEPENDENCIES = \
  libgnunetutil.la
 
+test_common_logging_dummy_SOURCES = \
+ test_common_logging_dummy.c
+test_common_logging_dummy_LDADD = \
+ $(top_builddir)/src/util/libgnunetutil.la
+test_common_logging_dummy_DEPENDENCIES = \
+ libgnunetutil.la
 
 lib_LTLIBRARIES = libgnunetutil.la
 
@@ -64,6 +79,7 @@ libgnunetutil_la_SOURCES = \
   disk.h \
   getopt.c \
   getopt_helpers.c \
+  helper.c \
   load.c \
   network.c \
   os_installation.c \
@@ -93,7 +109,7 @@ libgnunetutil_la_LIBADD = \
 
 libgnunetutil_la_LDFLAGS = \
   $(GN_LIB_LDFLAGS) \
-  -version-info 4:0:0
+  -version-info 6:0:1
 
 
 bin_PROGRAMS = \
@@ -175,7 +191,8 @@ check_PROGRAMS = \
  test_strings \
  test_time \
  $(BENCHMARKS) \
- test_os_start_process 
+ test_os_start_process \
+ test_common_logging_runtime_loglevels
 
 if ENABLE_TEST_RUN
 TESTS = $(check_PROGRAMS)
@@ -212,6 +229,11 @@ test_common_logging_SOURCES = \
 test_common_logging_LDADD = \
  $(top_builddir)/src/util/libgnunetutil.la  
 
+test_common_logging_runtime_loglevels_SOURCES = \
+ test_common_logging_runtime_loglevels.c
+test_common_logging_runtime_loglevels_LDADD = \
+ $(top_builddir)/src/util/libgnunetutil.la
+
 test_configuration_SOURCES = \
  test_configuration.c
 test_configuration_LDADD = \