moved CURL_CA_BUNDLE define to generated config.h.

This commit is contained in:
Gunter Knauf 2008-03-31 12:51:44 +00:00
parent d13be06aaa
commit 3d08b352a2
1 changed files with 8 additions and 0 deletions

View File

@ -520,6 +520,11 @@ endif
ifdef OLD_NOVELLSDK
@echo $(DL)#define socklen_t int$(DL) >> $@
endif
ifdef CABUNDLE
@echo $(DL)#define CURL_CA_BUNDLE "$(CABUNDLE)"$(DL) >> $@
else
@echo $(DL)#define CURL_CA_BUNDLE getenv("CURL_CA_BUNDLE")$(DL) >> $@
endif
FORCE: ;
@ -528,6 +533,9 @@ info: $(OBJDIR)/version.inc
@echo libarchitecture: $(LIBARCH)
@echo curl version: $(LIBCURL_VERSION_STR)
@echo compiler/linker: $(CC) / $(LD)
ifdef CABUNDLE
@echo ca-bundle path: $(CABUNDLE)
endif
ifdef WITH_SSL
@echo SSL support: enabled (OpenSSL)
else