File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 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:
6666
6767* Apache Cassandra versions 1.2, 2.0 and partially 2.1
6868* DataStax Enterprise 3.1, 3.2, 4.0 and 4.5
69- * PHP 5.3+
69+ * PHP 5.3.4 +
7070* Compilers: GCC 4.1.2+, Clang 3.4+, and MSVC 2010/2012/2013
7171
7272__ 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 2222#include <Zend/zend_exceptions.h>
2323#include <Zend/zend_interfaces.h>
2424
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+
2529#if HAVE_SPL
2630# include <ext/spl/spl_iterators.h>
2731# 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
33
44int php_cassandra_future_wait_timed (CassFuture * future , zval * timeout TSRMLS_DC );
55int php_cassandra_future_is_error (CassFuture * future TSRMLS_DC );
66
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