summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2020-08-09 06:09:19 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2020-08-09 06:09:19 (EDT)
commitac3ab8a14abbe4004381c8bf019578e97509f3a9 (patch)
tree9dd0879f0386e47e12a6d0d9f777586b113903bb
parenta6f15679ffea61d9b29f2e0b6b1f19060e46ce44 (diff)
configure.ac: Check for ProteanOS root certs dir
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 3827af5..ce26416 100644
--- a/configure.ac
+++ b/configure.ac
@@ -123,7 +123,8 @@ AC_ARG_WITH([ca-certificates-dir],
if test x"${HAVE_CA_CERTS}" != x'0' && test x"${CA_CERTS_DIR}" = x'NULL'; then
AC_MSG_CHECKING([for CA root certificates directory])
for d in /etc/ssl/certs /usr/lib/ssl/certs /usr/share/ssl \
- /usr/local/ssl /etc/ssl /usr/share/ca-certificates; do
+ /usr/local/ssl /etc/ssl /usr/share/ca-certificates \
+ /etc/x509/server-auth; do
if test -d "${d}"; then
AC_MSG_RESULT([${d}])
HAVE_CA_CERTS='1'