Sync HAVE_OPENSSL* symbols (#14333)

This syncs few inconsistencies between the Windows and Autotools build
systems:
- HAVE_OPENSSL_EXT is now defined in the same style on both systems
  (undefined - extension is not available, defined to 1 - extension is
  available)
- HAVE_OPENSSL removed as it was only defined on Windows
This commit is contained in:
Peter Kokot 2024-06-11 19:18:19 +02:00 committed by GitHub
parent bfc988552f
commit 61a0e3bd19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 10 additions and 7 deletions

View file

@ -88,7 +88,7 @@
# include "win32/select.h"
#endif
#if defined(PHP_WIN32) && defined(HAVE_OPENSSL)
#if defined(PHP_WIN32) && defined(HAVE_OPENSSL_EXT)
# include "openssl/applink.c"
#endif