aboutsummaryrefslogtreecommitdiff
path: root/src/cadet
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/cadet
parent90261cefc0f0417fe34e32f459b892e7b10286eb (diff)
downloadgnunet-dfcab34c5af80c0068299bacb16ffc461bf3c1ad.tar.gz
gnunet-dfcab34c5af80c0068299bacb16ffc461bf3c1ad.zip
add $(GN_LIBINTL) to Makefile.am (fixes 0005902)
Diffstat (limited to 'src/cadet')
-rw-r--r--src/cadet/Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cadet/Makefile.am b/src/cadet/Makefile.am
index b6e72688d..d8d81bf20 100644
--- a/src/cadet/Makefile.am
+++ b/src/cadet/Makefile.am
@@ -48,6 +48,8 @@ gnunet_cadet_SOURCES = \
48gnunet_cadet_LDADD = \ 48gnunet_cadet_LDADD = \
49 libgnunetcadet.la \ 49 libgnunetcadet.la \
50 $(top_builddir)/src/util/libgnunetutil.la 50 $(top_builddir)/src/util/libgnunetutil.la
51gnunet_cadet_LDFLAGS = \
52 $(GN_LIBINTL)
51 53
52gnunet_service_cadet_SOURCES = \ 54gnunet_service_cadet_SOURCES = \
53 gnunet-service-cadet.c gnunet-service-cadet.h \ 55 gnunet-service-cadet.c gnunet-service-cadet.h \
@@ -70,7 +72,8 @@ gnunet_service_cadet_LDADD = \
70 $(top_builddir)/src/hello/libgnunethello.la \ 72 $(top_builddir)/src/hello/libgnunethello.la \
71 $(top_builddir)/src/block/libgnunetblock.la 73 $(top_builddir)/src/block/libgnunetblock.la
72if LINUX 74if LINUX
73 gnunet_service_cadet_LDFLAGS = -lrt 75 gnunet_service_cadet_LDFLAGS = -lrt \
76 $(GN_LIBINTL)
74endif 77endif
75 78
76 79