From d5a2ea4b73220d58f12b2d6bdd378dc8e0a23bf9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Mon, 10 May 1999 23:59:28 +0000 Subject: [PATCH 1/1] Move openssl.cnf out of lib/. --- CHANGES | 3 +++ INSTALL | 1 - apps/Makefile.ssl | 4 ++-- apps/ca.c | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 75acaceed3..acac07a4b3 100644 --- a/CHANGES +++ b/CHANGES @@ -5,6 +5,9 @@ Changes between 0.9.2b and 0.9.3 + *) Move openssl.cnf out of lib/. + [Ulf Möller] + *) Fix various things to let OpenSSL even pass ``egcc -pipe -O2 -Wall -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline'' with EGCS 1.1.2+ diff --git a/INSTALL b/INSTALL index bf0046c80b..f8dc959053 100644 --- a/INSTALL +++ b/INSTALL @@ -134,7 +134,6 @@ certs Initially empty, this is the default location for certificate files. - lib Contains the OpenSSL configuration file "openssl.cnf". misc Various scripts. private Initially empty, this is the default location for private key files. diff --git a/apps/Makefile.ssl b/apps/Makefile.ssl index 124879c500..9e19793728 100644 --- a/apps/Makefile.ssl +++ b/apps/Makefile.ssl @@ -101,8 +101,8 @@ install: cp $$i $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i; \ chmod 755 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i ); \ done - @cp openssl.cnf $(INSTALL_PREFIX)$(OPENSSLDIR)/lib; \ - chmod 644 $(INSTALL_PREFIX)$(OPENSSLDIR)/lib/openssl.cnf + @cp openssl.cnf $(INSTALL_PREFIX)$(OPENSSLDIR); \ + chmod 644 $(INSTALL_PREFIX)$(OPENSSLDIR)/openssl.cnf tags: ctags $(SRC) diff --git a/apps/ca.c b/apps/ca.c index 323eb8525f..0ee8559c97 100644 --- a/apps/ca.c +++ b/apps/ca.c @@ -83,7 +83,7 @@ #define PROG ca_main #define BASE_SECTION "ca" -#define CONFIG_FILE "lib/openssl.cnf" +#define CONFIG_FILE "openssl.cnf" #define ENV_DEFAULT_CA "default_ca" -- 2.34.1