aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-04-06 12:29:45 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-04-06 12:29:45 +0000
commit6ed0da8e98f15900ecca0f8abc6c26af6702595b (patch)
tree541718e0fee979da9cf96682bed7cd6b0ad28251
parent7fd91d70bd0bb5130d4b401b47cf0f633ec30e65 (diff)
Ryan Weaver's fix to prevent the ca bundle to get installed even when
building curl without SSL support!
-rw-r--r--configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 43e916eed..b74c33bf2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -834,6 +834,11 @@ AC_HELP_STRING([--without-ca-bundle], [Don't install the CA bundle]),
fi
] )
+if test X"$OPT_SSL" = Xno
+then
+ ca="no"
+fi
+
if test "x$ca" = "xno"; then
dnl let's not keep "no" as path name, blank it instead
ca=""