diff options
author | Stig Venaas <venaas@php.net> | 2000-11-13 19:13:41 +0000 |
---|---|---|
committer | Stig Venaas <venaas@php.net> | 2000-11-13 19:13:41 +0000 |
commit | 5d7a485cd7eed64c334d3e736d727684ba005137 (patch) | |
tree | 8745ff2abcecf5658215502f6fa7d7f617de22bc | |
parent | 6a86b6fad50cc940e6e66bfe307b54aa03087ee6 (diff) | |
download | php-git-5d7a485cd7eed64c334d3e736d727684ba005137.tar.gz |
OpenSSL checking didn't work well, should be better now. Removed check
for include/evp.h, are there versions around that put it there? Recent
versions have it in include/openssl.
-rw-r--r-- | configure.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 88c2e82b7b..b2b28dc8c1 100644 --- a/configure.in +++ b/configure.in @@ -515,9 +515,6 @@ AC_DEFUN(PHP_SETUP_OPENSSL,[ for i in $PHP_OPENSSL; do if test -r $i/include/openssl/evp.h; then OPENSSL_DIR=$i - OPENSSL_INC=$i/include/openssl - elif test -r $i/include/evp.h; then - OPENSSL_DIR=$i OPENSSL_INC=$i/include fi done |