X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_api.h;h=fbfea28a02b85593d2832210c61933ee7e2ddaaf;hp=2334404f31f7b1aea20caf43b67ffc1ba3b2491e;hb=286fd61cfcf5c44ca5d36c4a1014a31f5c559b94;hpb=eebe0f3e8947ecb407451d20aef0611cfcedfdac diff --git a/php_http_api.h b/php_http_api.h index 2334404..fbfea28 100644 --- a/php_http_api.h +++ b/php_http_api.h @@ -17,7 +17,9 @@ #include "config.h" #endif +#ifndef PHP_WIN32 #include +#endif #include #include @@ -27,16 +29,12 @@ #include -#if defined(PHP_WIN32) -# if defined(PHP_HTTP_EXPORTS) -# define PHP_HTTP_API __declspec(dllexport) -# elif defined(COMPILE_DL_HTTP) -# define PHP_HTTP_API __declspec(dllimport) -# else -# define PHP_HTTP_API -# endif +#ifdef PHP_WIN32 +# define PHP_HTTP_API __declspec(dllexport) +#elif defined(__GNUC__) && __GNUC__ >= 4 +# define PHP_HTTP_API __attribute__ ((visibility("default"))) #else -# define PHP_HTTP_API +# define PHP_HTTP_API #endif /* make functions that return SUCCESS|FAILURE more obvious */ @@ -50,6 +48,10 @@ typedef int STATUS; # define PHP_HTTP_HAVE_HASH #endif +#if (defined(HAVE_JSON) || defined(PHP_HTTP_HAVE_EXT_JSON)) && (PHP_HTTP_SHARED_DEPS || !defined(COMPILE_DL_JSON)) +# define PHP_HTTP_HAVE_JSON +#endif + #ifdef PHP_WIN32 # define CURL_STATICLIB # define PHP_HTTP_HAVE_NETDB