X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_cache_api.h;h=dbbe0a2b78df9287c143b572c3e94719175cc0ee;hp=6efe1d834199cb23295f6175a112a9918cb068c0;hb=ebf03950ffaea849b931adf83b6c20ac9fb7ef33;hpb=9676c81efbb8f180fa189d71a7ecb50dde4f5646 diff --git a/php_http_cache_api.h b/php_http_cache_api.h index 6efe1d8..dbbe0a2 100644 --- a/php_http_cache_api.h +++ b/php_http_cache_api.h @@ -20,14 +20,16 @@ #include "ext/standard/crc32.h" #include "ext/standard/sha1.h" #include "ext/standard/md5.h" -#if defined(HTTP_HAVE_EXT_HASH) -# include "php_hash.h" -#elif defined(HTTP_HAVE_HASH_EXT_HASH) -# define HTTP_HAVE_EXT_HASH -# include "hash/php_hash.h" -#elif defined(HTTP_HAVE_EXT_HASH_EXT_HASH) -# define HTTP_HAVE_EXT_HASH -# include "ext/hash/php_hash.h" +#if !HTTP_SHARED_EXT(HASH) +# if defined(HTTP_HAVE_EXT_HASH) +# include "php_hash.h" +# elif defined(HTTP_HAVE_HASH_EXT_HASH) +# define HTTP_HAVE_EXT_HASH +# include "hash/php_hash.h" +# elif defined(HTTP_HAVE_EXT_HASH_EXT_HASH) +# define HTTP_HAVE_EXT_HASH +# include "ext/hash/php_hash.h" +# endif #endif #define http_etag_digest(d, l) _http_etag_digest((d), (l)) @@ -53,7 +55,7 @@ static inline void *_http_etag_init(TSRMLS_D) void *ctx = NULL; char *mode = HTTP_G->etag.mode; -#ifdef HTTP_HAVE_EXT_HASH +#if defined(HTTP_HAVE_EXT_HASH) && !HTTP_SHARED_EXT(HASH) php_hash_ops *eho = NULL; if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) { @@ -79,7 +81,7 @@ static inline char *_http_etag_finish(void *ctx TSRMLS_DC) unsigned char digest[128] = {0}; char *etag = NULL, *mode = HTTP_G->etag.mode; -#ifdef HTTP_HAVE_EXT_HASH +#if defined(HTTP_HAVE_EXT_HASH) && !HTTP_SHARED_EXT(HASH) php_hash_ops *eho = NULL; if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) { @@ -106,7 +108,7 @@ static inline char *_http_etag_finish(void *ctx TSRMLS_DC) static inline void _http_etag_update(void *ctx, const char *data_ptr, size_t data_len TSRMLS_DC) { char *mode = HTTP_G->etag.mode; -#ifdef HTTP_HAVE_EXT_HASH +#if defined(HTTP_HAVE_EXT_HASH) && !HTTP_SHARED_EXT(HASH) php_hash_ops *eho = NULL; if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) {