./configure
make clean
-
+
$COVERITY_BIN --dir $COVERITY_BUILD_DIR/cov-int make -j8
+echo >&2
+echo -n "Submit results to scan.coverity.com? (y/N) " >&2
+read submit
+echo >&2
+
+if test "$submit" != "y"; then
+ exit
+fi
+
pushd $COVERITY_BUILD_DIR
tar -czf cov-int{.tgz,}
popd
#ifndef PHP_HTTP_API_H
#define PHP_HTTP_API_H
+#ifdef __COVERITY_GCC_VERSION_AT_LEAST
+# define _Float128 float
+# define _Float64 float
+# define _Float32 float
+# define _Float64x float
+# define _Float32x float
+#endif
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
+--------------------------------------------------------------------+
*/
-#include "php.h"
+#include "php_http_api.h"
#include "php_http_buffer.h"
PHP_HTTP_BUFFER_API php_http_buffer_t *php_http_buffer_init_ex(