Search for the FreeBSD CA cert file /usr/local/share/certs/ca-root.crt
This commit is contained in:
parent
cc0054a4d5
commit
304537c24f
3
CHANGES
3
CHANGES
@ -6,6 +6,9 @@
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
Daniel Fandrich (3 Sep 2008)
|
||||||
|
- Search for the FreeBSD CA cert file /usr/local/share/certs/ca-root.crt
|
||||||
|
|
||||||
Daniel Fandrich (2 Sep 2008)
|
Daniel Fandrich (2 Sep 2008)
|
||||||
- Fixed an out of memory problem that caused torture test failures in tests
|
- Fixed an out of memory problem that caused torture test failures in tests
|
||||||
706 and 707.
|
706 and 707.
|
||||||
|
@ -3444,6 +3444,7 @@ dnl regarding the paths this will scan:
|
|||||||
dnl /etc/ssl/certs/ca-certificates.crt Debian systems
|
dnl /etc/ssl/certs/ca-certificates.crt Debian systems
|
||||||
dnl /etc/pki/tls/certs/ca-bundle.crt Redhat and Mandriva
|
dnl /etc/pki/tls/certs/ca-bundle.crt Redhat and Mandriva
|
||||||
dnl /usr/share/ssl/certs/ca-bundle.crt old(er) Redhat
|
dnl /usr/share/ssl/certs/ca-bundle.crt old(er) Redhat
|
||||||
|
dnl /usr/local/share/certs/ca-root.crt FreeBSD
|
||||||
dnl /etc/ssl/certs/ (ca path) SUSE
|
dnl /etc/ssl/certs/ (ca path) SUSE
|
||||||
|
|
||||||
AC_DEFUN([CURL_CHECK_CA_BUNDLE], [
|
AC_DEFUN([CURL_CHECK_CA_BUNDLE], [
|
||||||
@ -3505,6 +3506,7 @@ AC_HELP_STRING([--without-ca-path], [Don't use a default CA path]),
|
|||||||
for a in /etc/ssl/certs/ca-certificates.crt \
|
for a in /etc/ssl/certs/ca-certificates.crt \
|
||||||
/etc/pki/tls/certs/ca-bundle.crt \
|
/etc/pki/tls/certs/ca-bundle.crt \
|
||||||
/usr/share/ssl/certs/ca-bundle.crt \
|
/usr/share/ssl/certs/ca-bundle.crt \
|
||||||
|
/usr/local/share/certs/ca-root.crt \
|
||||||
"$cac"; do
|
"$cac"; do
|
||||||
if test -f "$a"; then
|
if test -f "$a"; then
|
||||||
ca="$a"
|
ca="$a"
|
||||||
@ -3956,4 +3958,4 @@ AC_DEFUN([CURL_CHECK_WIN32_LARGEFILE], [
|
|||||||
AC_MSG_RESULT([no])
|
AC_MSG_RESULT([no])
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
])
|
])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user