Update libcurl pkgconfig file for 10.10

This matches the version shipped with 10.10.5.

 The list of supported features/protocols was obtained
 using `curl-config`:

```
 features="`curl-config --features`"; echo "${features//$'\n'/ }"
 protocols="`curl-config --protocols`"; echo "${protocols//$'\n'/ }"
```

Signed-off-by: Mohammad AlSaleh <CE.Mohammad.AlSaleh@gmail.com>

Closes Homebrew/homebrew#46073.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
Mohammad AlSaleh 2015-11-17 16:22:59 +02:00 committed by Dominyk Tiller
parent 39c9ce628f
commit 0873eb6df2

View File

@ -27,13 +27,13 @@ prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
supported_protocols="DICT FILE FTP FTPS GOPHER HTTP HTTPS IMAP IMAPS LDAP LDAPS POP3 POP3S RTSP SMTP SMTPS TELNET TFTP"
supported_features="SSL IPv6 libz AsynchDNS NTLM NTLM_WB GSS-API"
supported_protocols="DICT FILE FTP FTPS GOPHER HTTP HTTPS IMAP IMAPS LDAP LDAPS POP3 POP3S RTSP SMB SMBS SMTP SMTPS TELNET TFTP"
supported_features="SSL IPv6 UnixSockets libz AsynchDNS GSS-API SPNEGO Kerberos NTLM NTLM_WB"
Name: libcurl
URL: http://curl.haxx.se/
Description: Library to transfer files with ftp, http, etc.
Version: 7.30.0
Version: 7.43.0
Libs: -L${libdir} -lcurl
Libs.private: -lssl -lcrypto -Wl,-weak-lldap -Wl,-weak-lgssapi_krb5 -lresolv -lssl -lcrypto -lz -lz
Libs.private: -lssl -lcrypto -Wl,-weak-lldap -Wl,-weak-lgssapi_krb5 -lresolv -lssl -lcrypto -lz -lz
Cflags: -I${includedir}