aboutsummaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-04-23 22:13:45 +0000
committerBodo Möller <bodo@openssl.org>1999-04-23 22:13:45 +0000
commitec577822f95a8bca0023c5c77cef1a4916822d4a (patch)
tree206e75c0178ff0719b87a4d94e261fc243ce42a8 /Configure
parent806115771c7a056756cb5f93bb3aaa71cd418e49 (diff)
downloadopenssl-ec577822f95a8bca0023c5c77cef1a4916822d4a.zip
openssl-ec577822f95a8bca0023c5c77cef1a4916822d4a.tar.gz
openssl-ec577822f95a8bca0023c5c77cef1a4916822d4a.tar.bz2
Change #include filenames from <foo.h> to <openssl.h>.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure25
1 files changed, 25 insertions, 0 deletions
diff --git a/Configure b/Configure
index abf0562..3085fa0 100755
--- a/Configure
+++ b/Configure
@@ -542,6 +542,31 @@ if($IsWindows) {
system 'make -f Makefile.ssl links' if !$IsWindows;
+my $pwd=`pwd`;
+chop($pwd);
+print <<EOF;
+
+NOTE: The OpenSSL header files have been moved from include/*.h
+to include/openssl/*.h. To include OpenSSL header files, now
+directives of the form
+ #include <openssl/foo.h>
+should be used instead of #include <foo.h>.
+These new file locations allow installing the OpenSSL header
+files in /usr/local/include/openssl/ and should help avoid
+conflicts with other libraries.
+
+To compile programs that use the old form <foo.h>,
+usually an additional compiler option will suffice: E.g., add
+ -I/usr/local/include/openssl
+or
+ -I$pwd/include/openssl
+to the CFLAGS in the Makefile of the program that you want to compile.
+
+Please make sure that no old OpenSSL header files are around:
+The include directory should now be empty except for the openssl
+subdirectory.
+EOF
+
exit(0);
sub bad_target