diff options
author | foobar <sniper@php.net> | 2003-06-27 16:41:41 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-06-27 16:41:41 +0000 |
commit | 3a7ca909becef523275ac0b7cc8d2f9d5b3eff1d (patch) | |
tree | 8d673f914daafe68e724f0ad4cc50c53d97e3783 /ext/openssl | |
parent | 357f62734ade0f293454596c46fce51d21275734 (diff) | |
download | php-git-3a7ca909becef523275ac0b7cc8d2f9d5b3eff1d.tar.gz |
- HAVE_OPENSSL_EXT is not defined always.
Diffstat (limited to 'ext/openssl')
-rw-r--r-- | ext/openssl/php_openssl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/php_openssl.h b/ext/openssl/php_openssl.h index eaa84b7252..f1f85cb645 100644 --- a/ext/openssl/php_openssl.h +++ b/ext/openssl/php_openssl.h @@ -22,7 +22,7 @@ #ifndef PHP_OPENSSL_H #define PHP_OPENSSL_H /* HAVE_OPENSSL would include SSL MySQL stuff */ -#if HAVE_OPENSSL_EXT +#ifdef HAVE_OPENSSL_EXT extern zend_module_entry openssl_module_entry; #define phpext_openssl_ptr &openssl_module_entry |