diff options
author | Bodo Möller <bodo@openssl.org> | 1999-09-09 22:21:10 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-09-09 22:21:10 +0200 |
commit | 63d3f44abfda10bea4263b48021c25f610188678 (patch) | |
tree | adc8967805d27c5cbee838581361444e001e9cec /Configure | |
parent | Correct warnings. (diff) | |
download | openssl-63d3f44abfda10bea4263b48021c25f610188678.tar.xz openssl-63d3f44abfda10bea4263b48021c25f610188678.zip |
Re-enable message about transition <foo.h> => <openssl/foo.h>
because various programs are not updated that often
and hence still expect header files names without the openssl/ prefix.
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 64 |
1 files changed, 32 insertions, 32 deletions
@@ -741,38 +741,38 @@ 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. -# -# 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. + +EOF print <<\EOF if (!$no_threads && !$threads); |