summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2011-11-25 15:10:00 (GMT)
committerMark Brand <mabrand@mabrand.nl>2011-11-25 15:10:00 (GMT)
commitab238982a2986546a9179b968cde3aee9b1f0155 (patch)
tree12fb7434c8fa948772072a285680942ebb56a759
parent59a3ede9120c12ebdd76d85ee38ab3e1d7ccaea1 (diff)
downloadmxe-ab238982a2986546a9179b968cde3aee9b1f0155.zip
mxe-ab238982a2986546a9179b968cde3aee9b1f0155.tar.gz
mxe-ab238982a2986546a9179b968cde3aee9b1f0155.tar.bz2
package curl: fix libidn dependency
Curl seems to assume that -lidn is enough, but libidn itself has dependencies that pkg-config lists.
-rw-r--r--src/curl.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/curl.mk b/src/curl.mk
index c8d572e..523318c 100644
--- a/src/curl.mk
+++ b/src/curl.mk
@@ -29,7 +29,7 @@ define $(PKG)_BUILD
--with-gnutls \
--with-libidn \
--enable-sspi \
- LIBS="`$(TARGET)-pkg-config --libs libssh2`"
+ LIBS="`$(TARGET)-pkg-config --libs libidn libssh2`"
$(MAKE) -C '$(1)' -j '$(JOBS)' install
'$(TARGET)-gcc' \