diff options
author | Mark Brand <mabrand@mabrand.nl> | 2011-11-25 22:20:05 (GMT) |
---|---|---|
committer | Mark Brand <mabrand@mabrand.nl> | 2011-11-25 22:20:05 (GMT) |
commit | 72b8bd2cca4e738939bb610104d3cd1f95fbe0ec (patch) | |
tree | 0fb55692cb2fa8efa6d37fd9c34cfb77e150a1c6 /src/curl.mk | |
parent | 443d49897852b260a042990deaddb56a339a0bb6 (diff) | |
download | mxe-72b8bd2cca4e738939bb610104d3cd1f95fbe0ec.zip mxe-72b8bd2cca4e738939bb610104d3cd1f95fbe0ec.tar.gz mxe-72b8bd2cca4e738939bb610104d3cd1f95fbe0ec.tar.bz2 |
package curl: use pkg-config instead of LIBS for libssh2 and libidn
Cherry-picked patch adds pkg-config detection of libidn.
Explicit "--with-libssh2" causes pkg-config to be used for libssh2.
Diffstat (limited to 'src/curl.mk')
-rw-r--r-- | src/curl.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/curl.mk b/src/curl.mk index 523318c..6583161 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 libidn libssh2`" + --with-libssh2 $(MAKE) -C '$(1)' -j '$(JOBS)' install '$(TARGET)-gcc' \ |