summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-09-10 00:29:33 +0000
committerBodo Möller <bodo@openssl.org>1999-09-10 00:29:33 +0000
commitc82c1d4a9da31266e942f5e6cd73c20941254eaa (patch)
tree96e02eacea89c0f8712243aaa3b0626c11415e03 /Configure
parent63d3f44abfda10bea4263b48021c25f610188678 (diff)
Truncate message about "new" include filenames
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure32
1 files changed, 2 insertions, 30 deletions
diff --git a/Configure b/Configure
index f3aa10258f..36f07b06db 100755
--- a/Configure
+++ b/Configure
@@ -741,37 +741,10 @@ EOF
}
}
-my $pwd;
-
-if($IsWindows) {
- $pwd="(current directory)";
-} else {
- $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$prefix/include/openssl
-or
- -I$pwd/include/openssl
-to the CFLAGS in the Makefile of the program that you want to compile
-(and leave all the original -I...'s in place!).
-
-Please make sure that no old OpenSSL header files are around:
-The include directory should now be empty except for the openssl
-subdirectory.
-
+NOTE: OpenSSL header files were moved from <*.h> to <openssl/*.h>;
+see file INSTALL for hints on coping with compatibility problems.
EOF
print <<\EOF if (!$no_threads && !$threads);
@@ -779,7 +752,6 @@ print <<\EOF if (!$no_threads && !$threads);
The library could not be configured for supporting multi-threaded
applications as the compiler options required on this system are not known.
See file INSTALL for details if you need multi-threading.
-
EOF
exit(0);