Darwin seems to like this much better.

This commit is contained in:
George Schlossnagle 2005-07-15 16:47:48 +00:00
parent 869d6002d6
commit d0ec239661
2 changed files with 5 additions and 2 deletions

View File

@ -52,6 +52,9 @@
#include "ext/standard/url.h"
#include "php_curl.h"
int le_curl;
int le_curl_multi_handle;
static void _php_curl_close(zend_rsrc_list_entry *rsrc TSRMLS_DC);
#define SAVE_CURL_ERROR(__handle, __err) (__handle)->err.no = (int) __err;

View File

@ -51,9 +51,9 @@ extern zend_module_entry curl_module_entry;
#define PHP_CURL_BINARY 6
#define PHP_CURL_IGNORE 7
int le_curl;
extern int le_curl;
#define le_curl_name "cURL handle"
int le_curl_multi_handle;
extern int le_curl_multi_handle;
#define le_curl_multi_handle_name "cURL Multi Handle"
PHP_MINIT_FUNCTION(curl);