File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ Cassandra's native protocol. The current version works with:
66
66
67
67
* Apache Cassandra versions 1.2, 2.0 and partially 2.1
68
68
* DataStax Enterprise 3.1, 3.2, 4.0 and 4.5
69
- * PHP 5.3+
69
+ * PHP 5.3.4 +
70
70
* Compilers: GCC 4.1.2+, Clang 3.4+, and MSVC 2010/2012/2013
71
71
72
72
__ NOTE__ : Apache Cassandra 2.1 support is limited to the Cassandra 2.0 API (native protocol v2), e.g. no user-defined types.
Original file line number Diff line number Diff line change 22
22
#include <Zend/zend_exceptions.h>
23
23
#include <Zend/zend_interfaces.h>
24
24
25
+ #if PHP_VERSION_ID < 50304
26
+ # error PHP 5.3.4 or later is required in order to build the driver
27
+ #endif
28
+
25
29
#if HAVE_SPL
26
30
# include <ext/spl/spl_iterators.h>
27
31
# include <ext/spl/spl_exceptions.h>
Original file line number Diff line number Diff line change 1
- #ifndef PHP_CASSANDRA_FUTURE_H
2
- #define PHP_CASSANDRA_FUTURE_H
1
+ #ifndef PHP_CASSANDRA_UTIL_FUTURE_H
2
+ #define PHP_CASSANDRA_UTIL_FUTURE_H
3
3
4
4
int php_cassandra_future_wait_timed (CassFuture * future , zval * timeout TSRMLS_DC );
5
5
int php_cassandra_future_is_error (CassFuture * future TSRMLS_DC );
6
6
7
- #endif /* PHP_CASSANDRA_FUTURE_H */
7
+ #endif /* PHP_CASSANDRA_UTIL_FUTURE_H */
You can’t perform that action at this time.
0 commit comments