summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2012-07-19 21:01:45 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2012-07-19 21:01:50 +0200
commita46604ec6c3932c413d631fd2e847892bbfdb0e1 (patch)
treef1da3b0061464b0d6720de04a7f7755f11938831 /configure.ac
parent7af349a1f1f91baca8b7cae2ee3b53d9172bdaa7 (diff)
downloadgnutls-a46604ec6c3932c413d631fd2e847892bbfdb0e1.tar.gz
Check for /etc/ssl/cert.pem in OpenBSD. Reported by David Woodhouse and Mike Miller.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e774be4910..0e62e4bbee 100644
--- a/configure.ac
+++ b/configure.ac
@@ -333,7 +333,8 @@ if test "x$with_default_trust_store_pkcs11" = x -a "x$with_default_trust_store_f
for i in \
/etc/ssl/certs/ca-certificates.crt \
/etc/pki/tls/cert.pem \
- /usr/local/share/certs/ca-root-nss.crt
+ /usr/local/share/certs/ca-root-nss.crt \
+ /etc/ssl/cert.pem
do
if test -e $i; then
with_default_trust_store_file="$i"