com php-src: Bug #66840: Fix broken build when extension built separately: ext/openssl/xp_ssl.c
Commit: 0e023e978445a7d2f723cabfd4a59d65886be72a
Author: Daniel Lowrey <rdlowrey@php.net> Sun, 13 Apr 2014 15:17:50 -0600
Parents: 3636a91adc0e0aac20870f004d4bbbd45c16262c
Branches: PHP-5.6
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=0e023e978445a7d2f723cabfd4a59d65886be72a
Log:
Bug #66840: Fix broken build when extension built separately
Bugs:
https://bugs.php.net/66840
Changed paths:
M ext/openssl/xp_ssl.c
Diff:
diff --git a/ext/openssl/xp_ssl.c b/ext/openssl/xp_ssl.c
index e251d21..c6a9157 100644
--- a/ext/openssl/xp_ssl.c
+++ b/ext/openssl/xp_ssl.c
@@ -20,6 +20,10 @@
/* $Id$ */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "php.h"
#include "ext/standard/file.h"
#include "ext/standard/url.h"
Thread (2 messages)
- rdlowrey@php.net