aboutsummaryrefslogtreecommitdiff
path: root/src/conversation
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2014-08-01 12:20:36 +0000
committerLRN <lrn1986@gmail.com>2014-08-01 12:20:36 +0000
commit5af3601273f0ed5e4d0f4e3e7039525a7b7ff4b3 (patch)
tree07ed47290000ab23c4752be71e0a5e6f8256d737 /src/conversation
parent1fed0331759cf7f2c7a60b7a8c3a478f1ebc251d (diff)
downloadgnunet-5af3601273f0ed5e4d0f4e3e7039525a7b7ff4b3.tar.gz
gnunet-5af3601273f0ed5e4d0f4e3e7039525a7b7ff4b3.zip
There's no GNUNET_LDFLAGS, there's only GN_LIB_FLAGS
This fixes a number of build errors on W32, where -no-undefined is needed to link shared libraries, and -no-undefined comes via GN_LIB_FLAGS.
Diffstat (limited to 'src/conversation')
-rw-r--r--src/conversation/Makefile.am26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/conversation/Makefile.am b/src/conversation/Makefile.am
index d5219cae9..a8c1e8788 100644
--- a/src/conversation/Makefile.am
+++ b/src/conversation/Makefile.am
@@ -38,7 +38,7 @@ libgnunetmicrophone_la_SOURCES = \
38libgnunetmicrophone_la_LIBADD = \ 38libgnunetmicrophone_la_LIBADD = \
39 $(top_builddir)/src/util/libgnunetutil.la 39 $(top_builddir)/src/util/libgnunetutil.la
40libgnunetmicrophone_la_LDFLAGS = \ 40libgnunetmicrophone_la_LDFLAGS = \
41 $(GNUNET_LDFLAGS) $(WINFLAGS) \ 41 $(GN_LIB_LDFLAGS) $(WINFLAGS) \
42 -version-info 0:0:0 42 -version-info 0:0:0
43 43
44libgnunetspeaker_la_SOURCES = \ 44libgnunetspeaker_la_SOURCES = \
@@ -46,7 +46,7 @@ libgnunetspeaker_la_SOURCES = \
46libgnunetspeaker_la_LIBADD = \ 46libgnunetspeaker_la_LIBADD = \
47 $(top_builddir)/src/util/libgnunetutil.la 47 $(top_builddir)/src/util/libgnunetutil.la
48libgnunetspeaker_la_LDFLAGS = \ 48libgnunetspeaker_la_LDFLAGS = \
49 $(GNUNET_LDFLAGS) $(WINFLAGS) \ 49 $(GN_LIB_LDFLAGS) $(WINFLAGS) \
50 -version-info 0:0:0 50 -version-info 0:0:0
51 51
52 52
@@ -62,7 +62,7 @@ libgnunetconversation_la_LIBADD = \
62 $(top_builddir)/src/util/libgnunetutil.la 62 $(top_builddir)/src/util/libgnunetutil.la
63 63
64libgnunetconversation_la_LDFLAGS = \ 64libgnunetconversation_la_LDFLAGS = \
65 $(GNUNET_LDFLAGS) $(WINFLAGS) \ 65 $(GN_LIB_LDFLAGS) $(WINFLAGS) \
66 -version-info 0:0:0 66 -version-info 0:0:0
67 67
68 68
@@ -105,7 +105,7 @@ gnunet_helper_audio_record_LDADD = \
105 -lpulse -lopus -logg \ 105 -lpulse -lopus -logg \
106 $(INTLLIBS) 106 $(INTLLIBS)
107gnunet_helper_audio_record_LDFLAGS = \ 107gnunet_helper_audio_record_LDFLAGS = \
108 $(GNUNET_LDFLAGS) $(WINFLAGS) 108 $(WINFLAGS)
109 109
110gnunet_helper_audio_playback_SOURCES = \ 110gnunet_helper_audio_playback_SOURCES = \
111 gnunet-helper-audio-playback.c 111 gnunet-helper-audio-playback.c
@@ -114,7 +114,7 @@ gnunet_helper_audio_playback_LDADD = \
114 -lpulse -lopus -logg \ 114 -lpulse -lopus -logg \
115 $(INTLLIBS) 115 $(INTLLIBS)
116gnunet_helper_audio_playback_LDFLAGS = \ 116gnunet_helper_audio_playback_LDFLAGS = \
117 $(GNUNET_LDFLAGS) $(WINFLAGS) 117 $(WINFLAGS)
118else 118else
119if BUILD_GST_HELPERS 119if BUILD_GST_HELPERS
120gnunet_helper_audio_record_SOURCES = \ 120gnunet_helper_audio_record_SOURCES = \
@@ -124,7 +124,7 @@ gnunet_helper_audio_record_LDADD = \
124 $(GST_LIBS) \ 124 $(GST_LIBS) \
125 $(INTLLIBS) 125 $(INTLLIBS)
126gnunet_helper_audio_record_LDFLAGS = \ 126gnunet_helper_audio_record_LDFLAGS = \
127 $(GNUNET_LDFLAGS) $(WINFLAGS) $(GST_LDFLAGS) 127 $(WINFLAGS) $(GST_LDFLAGS)
128gnunet_helper_audio_record_CFLAGS = \ 128gnunet_helper_audio_record_CFLAGS = \
129 $(GST_CFLAGS) 129 $(GST_CFLAGS)
130 130
@@ -135,7 +135,7 @@ gnunet_helper_audio_playback_LDADD = \
135 $(GST_LIBS) \ 135 $(GST_LIBS) \
136 $(INTLLIBS) 136 $(INTLLIBS)
137gnunet_helper_audio_playback_LDFLAGS = \ 137gnunet_helper_audio_playback_LDFLAGS = \
138 $(GNUNET_LDFLAGS) $(WINFLAGS) $(GST_LDFLAGS) 138 $(WINFLAGS) $(GST_LDFLAGS)
139gnunet_helper_audio_playback_CFLAGS = \ 139gnunet_helper_audio_playback_CFLAGS = \
140 $(GST_CFLAGS) 140 $(GST_CFLAGS)
141endif 141endif
@@ -151,7 +151,7 @@ gnunet_service_conversation_LDADD = \
151 $(top_builddir)/src/util/libgnunetutil.la \ 151 $(top_builddir)/src/util/libgnunetutil.la \
152 $(INTLLIBS) 152 $(INTLLIBS)
153gnunet_service_conversation_LDFLAGS = \ 153gnunet_service_conversation_LDFLAGS = \
154 $(GNUNET_LDFLAGS) $(WINFLAGS) 154 $(WINFLAGS)
155 155
156gnunet_conversation_SOURCES = \ 156gnunet_conversation_SOURCES = \
157 gnunet-conversation.c 157 gnunet-conversation.c
@@ -166,7 +166,7 @@ gnunet_conversation_LDADD = \
166 $(top_builddir)/src/util/libgnunetutil.la \ 166 $(top_builddir)/src/util/libgnunetutil.la \
167 $(INTLLIBS) 167 $(INTLLIBS)
168gnunet_conversation_LDFLAGS = \ 168gnunet_conversation_LDFLAGS = \
169 $(GNUNET_LDFLAGS) $(WINFLAGS) 169 $(WINFLAGS)
170 170
171gnunet_conversation_test_SOURCES = \ 171gnunet_conversation_test_SOURCES = \
172 gnunet-conversation-test.c 172 gnunet-conversation-test.c
@@ -176,7 +176,7 @@ gnunet_conversation_test_LDADD = \
176 $(top_builddir)/src/util/libgnunetutil.la \ 176 $(top_builddir)/src/util/libgnunetutil.la \
177 $(INTLLIBS) 177 $(INTLLIBS)
178gnunet_conversation_test_LDFLAGS = \ 178gnunet_conversation_test_LDFLAGS = \
179 $(GNUNET_LDFLAGS) $(WINFLAGS) 179 $(WINFLAGS)
180 180
181 181
182test_conversation_api_SOURCES = \ 182test_conversation_api_SOURCES = \
@@ -191,7 +191,7 @@ test_conversation_api_LDADD = \
191 $(top_builddir)/src/testing/libgnunettesting.la \ 191 $(top_builddir)/src/testing/libgnunettesting.la \
192 $(top_builddir)/src/util/libgnunetutil.la 192 $(top_builddir)/src/util/libgnunetutil.la
193test_conversation_api_LDFLAGS = \ 193test_conversation_api_LDFLAGS = \
194 $(GNUNET_LDFLAGS) $(WINFLAGS) -export-dynamic 194 $(WINFLAGS) -export-dynamic
195 195
196test_conversation_api_twocalls_SOURCES = \ 196test_conversation_api_twocalls_SOURCES = \
197 test_conversation_api_twocalls.c 197 test_conversation_api_twocalls.c
@@ -205,7 +205,7 @@ test_conversation_api_twocalls_LDADD = \
205 $(top_builddir)/src/testing/libgnunettesting.la \ 205 $(top_builddir)/src/testing/libgnunettesting.la \
206 $(top_builddir)/src/util/libgnunetutil.la 206 $(top_builddir)/src/util/libgnunetutil.la
207test_conversation_api_twocalls_LDFLAGS = \ 207test_conversation_api_twocalls_LDFLAGS = \
208 $(GNUNET_LDFLAGS) $(WINFLAGS) -export-dynamic 208 $(WINFLAGS) -export-dynamic
209 209
210test_conversation_api_reject_SOURCES = \ 210test_conversation_api_reject_SOURCES = \
211 test_conversation_api_reject.c 211 test_conversation_api_reject.c
@@ -219,7 +219,7 @@ test_conversation_api_reject_LDADD = \
219 $(top_builddir)/src/testing/libgnunettesting.la \ 219 $(top_builddir)/src/testing/libgnunettesting.la \
220 $(top_builddir)/src/util/libgnunetutil.la 220 $(top_builddir)/src/util/libgnunetutil.la
221test_conversation_api_reject_LDFLAGS = \ 221test_conversation_api_reject_LDFLAGS = \
222 $(GNUNET_LDFLAGS) $(WINFLAGS) -export-dynamic 222 $(WINFLAGS) -export-dynamic
223 223
224 224
225 pkgcfg_DATA = conversation.conf 225 pkgcfg_DATA = conversation.conf