- fix PHP4 build (has no only_exceptions INI setting
authorMichael Wallner <mike@php.net>
Tue, 2 Aug 2005 08:25:38 +0000 (08:25 +0000)
committerMichael Wallner <mike@php.net>
Tue, 2 Aug 2005 08:25:38 +0000 (08:25 +0000)
php_http_std_defs.h

index 87bd58ebb2a43e44cadc5a9e12e779e85cc0cde2..dc20aa1e7caa4964508b2f39b8651e92a8b2cf21 100644 (file)
@@ -333,9 +333,15 @@ typedef int STATUS;
 #      define E_THROW 0
 #endif
 #define HE_THROW       E_THROW
-#define HE_NOTICE      (HTTP_G(only_exceptions) ? E_THROW : E_NOTICE)
-#define HE_WARNING     (HTTP_G(only_exceptions) ? E_THROW : E_WARNING)
-#define HE_ERROR       (HTTP_G(only_exceptions) ? E_THROW : E_ERROR)
+#ifdef ZEND_ENGINE_2
+#      define HE_NOTICE        (HTTP_G(only_exceptions) ? E_THROW : E_NOTICE)
+#      define HE_WARNING       (HTTP_G(only_exceptions) ? E_THROW : E_WARNING)
+#      define HE_ERROR         (HTTP_G(only_exceptions) ? E_THROW : E_ERROR)
+#else
+#      define HE_NOTICE        E_NOTICE
+#      define HE_WARNING       E_WARNING
+#      define HE_ERROR         E_ERROR
+#endif
 
 #define HTTP_E_RUNTIME                         1L
 #define HTTP_E_INVALID_PARAM           2L