Browse Source

zlib.h being included before ssl.h needs to be handled here too

migration/unlabaled-1.29.2
Rasmus Lerdorf 24 years ago
parent
commit
204c64e57f
  1. 7
      sapi/apache/php_apache_http.h

7
sapi/apache/php_apache_http.h

@ -11,6 +11,13 @@
#include "zend.h"
#include "php_regex.h"
#include "php_compat.h"
#if HAVE_OPENSSL_EXT
/* zlib typedefs free_func which causes problems if the SSL includes happen
* after zlib.h is included */
# include <openssl/ssl.h>
#endif
#include "httpd.h"
#include "http_config.h"

Loading…
Cancel
Save