diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2015-02-17 02:25:16 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2015-02-17 02:25:16 +0800 |
commit | 2d8cbf212a5b23dcd1470ee9b8d8036676dc799e (patch) | |
tree | 35d8477869497275df26024fdbcc4958b888467f /mail/sylpheed/files | |
parent | bc3d029532cbec9678d534c135f721c8d7df3cdb (diff) | |
download | freebsd-ports-gnome-2d8cbf212a5b23dcd1470ee9b8d8036676dc799e.tar.gz freebsd-ports-gnome-2d8cbf212a5b23dcd1470ee9b8d8036676dc799e.tar.zst freebsd-ports-gnome-2d8cbf212a5b23dcd1470ee9b8d8036676dc799e.zip |
- Use new options helpers
- Provide an option to include CA bundle for certificate verification
- Provide an option to depend on curl. Curl is required to check for remote
updates. Enable this by default because the user expects this menu point to
work but give users an option to explicitly disable.
- Don't quiesce INSTALL_* commands
Diffstat (limited to 'mail/sylpheed/files')
-rw-r--r-- | mail/sylpheed/files/extra-patch-libsylph_ssl.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mail/sylpheed/files/extra-patch-libsylph_ssl.c b/mail/sylpheed/files/extra-patch-libsylph_ssl.c new file mode 100644 index 000000000000..9284d2574940 --- /dev/null +++ b/mail/sylpheed/files/extra-patch-libsylph_ssl.c @@ -0,0 +1,19 @@ +--- libsylph/ssl.c.orig 2014-06-10 06:06:36.000000000 +0200 ++++ libsylph/ssl.c 2015-02-16 16:38:30.082429979 +0100 +@@ -59,6 +59,7 @@ + LOOK_FOR("ca-bundle.crt"); + LOOK_FOR("ca-root.crt"); + LOOK_FOR("certs.crt"); ++ LOOK_FOR("cert.pem"); + } + + #undef LOOK_FOR +@@ -117,7 +118,7 @@ + certs_dir = NULL; + } + #else +- certs_file = find_certs_file("/etc/ssl"); ++ certs_file = find_certs_file("/usr/local/etc/ssl"); + if (!certs_file) + certs_file = find_certs_file("/etc"); + #endif |