diff options
author | Stig Bakken <ssb@php.net> | 1999-04-20 01:03:12 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 1999-04-20 01:03:12 +0000 |
commit | 54468d2e75aeb1ace053ff405f5f539a0012ba76 (patch) | |
tree | e308e39abaefdb62a90deaeb6329ca023f815592 /main/php.h | |
parent | b7c30c1bdf209bc270755bcafac45908fc8daf2f (diff) | |
download | php-git-54468d2e75aeb1ace053ff405f5f539a0012ba76.tar.gz |
odbc compiles and runs on UNIX again (tested with Solid 2.3)
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/main/php.h b/main/php.h index e877dfa014..b087058d15 100644 --- a/main/php.h +++ b/main/php.h @@ -39,6 +39,12 @@ #include "php_version.h" #include "zend.h" +#ifdef PACKAGE +# undef PACKAGE +#endif +#ifdef VERSION +# undef VERSION +#endif #include "zend_API.h" @@ -329,6 +335,7 @@ extern PHPAPI int php3_fhttpd_write(char *a,int n); #define PHP_NAMED_FE(php_name, name, arg_types) { #php_name, name, arg_types }, #define PHP_FE(name, arg_types) PHP_NAMED_FE(name, php3_##name, arg_types) +#define PHP_FALIAS(name, alias, arg_types) PHP_NAMED_FE(name, php3_##alias, arg_types) |