summaryrefslogtreecommitdiffstats
path: root/package/libxmlrpc/0004-use-correct-curl-config.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/libxmlrpc/0004-use-correct-curl-config.patch')
-rw-r--r--package/libxmlrpc/0004-use-correct-curl-config.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/package/libxmlrpc/0004-use-correct-curl-config.patch b/package/libxmlrpc/0004-use-correct-curl-config.patch
new file mode 100644
index 000000000..ada0bd24e
--- /dev/null
+++ b/package/libxmlrpc/0004-use-correct-curl-config.patch
@@ -0,0 +1,22 @@
+Use correct curl-config program
+
+Instead of calling again curl-config in src/Makefile (which ends up
+calling the wrong curl-config: the one in the PATH instead of the one
+pointed at by the environment variables at configure time), let's use
+the CURL_LDADD variable which was computed at configure time.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+
+Index: b/src/Makefile
+===================================================================
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -56,7 +56,7 @@
+ TRANSPORT_MODS += blddir/lib/curl_transport/curltransaction
+ TRANSPORT_MODS += blddir/lib/curl_transport/curlmulti
+ TRANSPORT_MODS += blddir/lib/curl_transport/lock_pthread
+- TRANSPORT_LIBDEP += $(shell curl-config --libs)
++ TRANSPORT_LIBDEP += $(CURL_LDADD)
+ endif
+ ifeq ($(MUST_BUILD_LIBWWW_CLIENT),yes)
+ TRANSPORT_MODS += blddir/lib/libwww_transport/xmlrpc_libwww_transport