aboutsummaryrefslogtreecommitdiff
path: root/src/regex
diff options
context:
space:
mode:
authorxrs <xrs@mail36.net>2019-11-08 10:33:15 +0100
committerxrs <xrs@mail36.net>2019-11-08 10:33:15 +0100
commitdfcab34c5af80c0068299bacb16ffc461bf3c1ad (patch)
tree8456693cfc19b226337fcc87e4c6be9e1c7e3f3c /src/regex
parent90261cefc0f0417fe34e32f459b892e7b10286eb (diff)
downloadgnunet-dfcab34c5af80c0068299bacb16ffc461bf3c1ad.tar.gz
gnunet-dfcab34c5af80c0068299bacb16ffc461bf3c1ad.zip
add $(GN_LIBINTL) to Makefile.am (fixes 0005902)
Diffstat (limited to 'src/regex')
-rw-r--r--src/regex/Makefile.am8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/regex/Makefile.am b/src/regex/Makefile.am
index 2fd00dd09..13413f242 100644
--- a/src/regex/Makefile.am
+++ b/src/regex/Makefile.am
@@ -64,6 +64,7 @@ libgnunetregex_la_SOURCES = \
64libgnunetregex_la_LIBADD = \ 64libgnunetregex_la_LIBADD = \
65 $(top_builddir)/src/util/libgnunetutil.la 65 $(top_builddir)/src/util/libgnunetutil.la
66libgnunetregex_la_LDFLAGS = \ 66libgnunetregex_la_LDFLAGS = \
67 $(GN_LIBINTL) \
67 $(GN_LIB_LDFLAGS) \ 68 $(GN_LIB_LDFLAGS) \
68 -version-info 3:1:0 69 -version-info 3:1:0
69 70
@@ -79,6 +80,7 @@ libgnunet_plugin_block_regex_la_LIBADD = \
79 $(top_builddir)/src/block/libgnunetblockgroup.la \ 80 $(top_builddir)/src/block/libgnunetblockgroup.la \
80 $(top_builddir)/src/util/libgnunetutil.la 81 $(top_builddir)/src/util/libgnunetutil.la
81libgnunet_plugin_block_regex_la_LDFLAGS = \ 82libgnunet_plugin_block_regex_la_LDFLAGS = \
83 $(GN_LIBINTL) \
82 $(GN_PLUGIN_LDFLAGS) 84 $(GN_PLUGIN_LDFLAGS)
83 85
84if HAVE_MYSQL 86if HAVE_MYSQL
@@ -117,6 +119,8 @@ perf_regex_LDADD = -lm \
117 libgnunetregexblock.la \ 119 libgnunetregexblock.la \
118 libgnunetregextest.a \ 120 libgnunetregextest.a \
119 $(top_builddir)/src/util/libgnunetutil.la 121 $(top_builddir)/src/util/libgnunetutil.la
122perf_regex_LDFLAGS = \
123 $(GN_LIBINTL)
120 124
121gnunet_regex_profiler_SOURCES = \ 125gnunet_regex_profiler_SOURCES = \
122 gnunet-regex-profiler.c 126 gnunet-regex-profiler.c
@@ -129,6 +133,8 @@ gnunet_regex_profiler_LDADD = -lm \
129 libgnunetregextest.a \ 133 libgnunetregextest.a \
130 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 134 $(top_builddir)/src/statistics/libgnunetstatistics.la \
131 $(top_builddir)/src/util/libgnunetutil.la 135 $(top_builddir)/src/util/libgnunetutil.la
136gnunet_regex_profiler_LDFLAGS = \
137 $(GN_LIBINTL)
132 138
133gnunet_daemon_regexprofiler_SOURCES = \ 139gnunet_daemon_regexprofiler_SOURCES = \
134 gnunet-daemon-regexprofiler.c 140 gnunet-daemon-regexprofiler.c
@@ -139,6 +145,8 @@ gnunet_daemon_regexprofiler_LDADD = -lm \
139 libgnunetregextest.a \ 145 libgnunetregextest.a \
140 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 146 $(top_builddir)/src/statistics/libgnunetstatistics.la \
141 $(top_builddir)/src/util/libgnunetutil.la 147 $(top_builddir)/src/util/libgnunetutil.la
148gnunet_daemon_regexprofiler_LDFLAGS = \
149 $(GN_LIBINTL)
142 150
143check_PROGRAMS = \ 151check_PROGRAMS = \
144 test_regex_integration \ 152 test_regex_integration \