File tree 3 files changed +10
-7
lines changed
3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
- PHP_ARG_ENABLE (dql-tokenizer,
2
- [ Whether to enable the "dql-tokenizer" extension] ,
3
- [ --enable-dql-tokenizer Enable "dql-tokenizer" extension support] )
1
+ PHP_ARG_ENABLE(dql-tokenizer, for dql_tokenizer support,
2
+ [ --enable-dql-tokenizer Include dql_tokenizer support] )
4
3
5
4
if test $PHP_DQL_TOKENIZER != "no"; then
6
- PHP_NEW_EXTENSION(dql-tokenizer, dql-tokenizer .c, $ext_shared)
5
+ PHP_NEW_EXTENSION(dql_tokenizer, dql_tokenizer .c, $ext_shared)
7
6
PHP_SUBST(DQL_TOKENIZER_SHARED_LIBADD)
8
7
fi
Original file line number Diff line number Diff line change 1
- #include "php_dql-tokenizer .h"
1
+ #include "php_dql_tokenizer .h"
2
2
3
3
zend_module_entry dql_tokenizer_module_entry = {
4
4
#if ZEND_MODULE_API_NO >= 20010901
@@ -18,5 +18,5 @@ zend_module_entry dql_tokenizer_module_entry = {
18
18
};
19
19
20
20
#ifdef COMPILE_DL_DQL_TOKENIZER
21
- ZEND_GET_MODULE (sample )
21
+ ZEND_GET_MODULE (dql_tokenizer )
22
22
#endif
Original file line number Diff line number Diff line change 2
2
3
3
#define PHP_DQL_TOKENIZER_H
4
4
5
- #define PHP_DQL_TOKENIZER_EXTNAME "dql-tokenizer "
5
+ #define PHP_DQL_TOKENIZER_EXTNAME "dql_tokenizer "
6
6
#define PHP_DQL_TOKENIZER_EXTVAR "0.1"
7
7
8
+ #ifdef HAVE_CONFIG_H
9
+ #include "config.h"
10
+ #endif
11
+
8
12
#include "php.h"
9
13
10
14
extern zend_module_entry dql_tokenizer_module_entry ;
You can’t perform that action at this time.
0 commit comments