-/*
+/*
* PHP Sendmail for Windows.
*
* This file is rewriten specificly for PHPFI. Some functionality
#include "php_win32_globals.h"
-#if HAVE_PCRE || HAVE_BUNDLED_PCRE
#include "ext/pcre/php_pcre.h"
-#endif
-
#include "ext/standard/php_string.h"
#include "ext/date/php_date.h"
*/
static zend_string *php_win32_mail_trim_header(char *header)
{
-
-#if HAVE_PCRE || HAVE_BUNDLED_PCRE
-
zend_string *result, *result2;
zend_string *replace;
zend_string *regex;
zend_string_release(result);
return result2;
-#else
- /* In case we don't have PCRE support (for whatever reason...) simply do nothing and return the unmodified header */
- return zend_string_init(header, strlen(header), 0);
-#endif
}
/*********************************************************************