From 4afeec47b56766b55771b37616fe373096d8f15f Mon Sep 17 00:00:00 2001 From: Pierrick Charron Date: Thu, 1 Sep 2011 14:19:38 +0000 Subject: [PATCH] Fix macros --- php_stomp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php_stomp.c b/php_stomp.c index c144a1e..35265a7 100755 --- a/php_stomp.c +++ b/php_stomp.c @@ -327,7 +327,7 @@ static void stomp_object_free_storage(stomp_object_t *intern TSRMLS_DC) } -#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION == 3 && PHP_RELEASE_VERSION >= 99) || (PHP_MAJOR_VERSION > 5) +#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION > 5) #define PHP_STOMP_RUNTIME_CACHE #endif static zend_object_value php_stomp_new(zend_class_entry *ce TSRMLS_DC)