nixpkgs/pkgs/tools
Thomas Tuegel 02157ab123 libcurl: honor $SSL_CERT_FILE (fixed)
The previous attempt to patch libcurl used

getenv("CURL_CA_BUNDLE") || getenv("SSL_CERT_FILE")

to get the second environment variable if the first is unset.
Unfortunately, this broke libcurl because the (||) operator is C returns
only 0 or 1, so it is inappropriate for pointer comparisons! Now we use

getenv("CURL_CA_BUNDLE") ? getenv("CURL_CA_BUNDLE") : getenv("SSL_CERT_FILE")

instead. This has one downside: it always calls getenv twice! But,
that's a small price to pay for actually being correct.
2014-12-02 10:41:24 -06:00
..
admin Turn more licenses into lib.licenses style 2014-11-06 00:48:16 +00:00
archivers dar: bump 2014-11-23 12:56:49 -05:00
audio initial liquidsoap package expression 2014-11-20 17:34:14 -05:00
backup rdiff-backup: unbreak 'rdiff-backup-statistics' 2014-11-23 21:58:46 +01:00
bluetooth fix openobex build 2014-11-15 22:32:47 +01:00
cd-dvd xorriso: update from 1.3.4 to 1.3.8 2014-10-07 21:50:40 +02:00
compression Merge remote-tracking branch 'origin/glibc-2.20' into staging 2014-11-16 22:17:36 +01:00
filesystems Merge branch 'master' into staging 2014-11-28 18:59:07 +01:00
graphics Add qrcode minimalistic QR-code decode/encode tool (for pure codes only) 2014-11-28 00:12:26 +03:00
inputmethods Add anthy support to uim 2014-11-07 11:17:48 +02:00
misc Merge branch 'master' into staging 2014-11-28 18:59:07 +01:00
networking libcurl: honor $SSL_CERT_FILE (fixed) 2014-12-02 10:41:24 -06:00
package-management nixUnstable: bump 2014-11-21 08:36:02 -05:00
security Merge branch 'master' into staging 2014-11-26 21:48:26 +01:00
system *: fix builds by disregarding warning from new glibc 2014-11-28 18:42:03 +01:00
text groff: update from 1.22.2 to 1.22.3 an adopt it 2014-11-19 08:47:41 +01:00
typesetting xmlroff: 0.3.98 -> 0.6.2 2014-11-24 08:43:43 +01:00
video change md5sum to sha256sum for a few packages 2014-10-12 16:13:21 +02:00
virtualization Turn more licenses into lib.licenses style 2014-11-06 00:48:16 +00:00
X11 added platforms and maintainers 2014-11-27 21:30:36 +01:00