diff options
| author | Sascha Schumann <sas@php.net> | 2002-03-20 13:24:59 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2002-03-20 13:24:59 +0000 |
| commit | 350de12bc24472ccf20ff9a8b39a6da0185c070d (patch) | |
| tree | 5e85a408051cb86b78f73f2ad81b9d26c5331b47 /ext/iconv/php_iconv.h | |
| parent | 6f77640ca82878ec9e2e666b0f51cff7092bdf40 (diff) | |
| download | php-git-350de12bc24472ccf20ff9a8b39a6da0185c070d.tar.gz | |
Expand the variables in PHP_EXPAND_BUILD_VARS.
Make HAVE_ICONV/HAVE_LIBICONV available through the more
fine-grained approach using a single include file per
directive. This will significantly reduce the price of
full dependencies for developers, because basically each
file today includes php.h which includes php_config.h.
If PHP_ATOM_INC is defined, these include files can be used.
For all PHP_DEFINEs, empty files are created upon configure start.
Diffstat (limited to 'ext/iconv/php_iconv.h')
| -rw-r--r-- | ext/iconv/php_iconv.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/iconv/php_iconv.h b/ext/iconv/php_iconv.h index 4e38380f80..247f4cc615 100644 --- a/ext/iconv/php_iconv.h +++ b/ext/iconv/php_iconv.h @@ -26,6 +26,11 @@ #define PHP_ICONV_API #endif +#ifdef PHP_ATOM_INC +#include "php_have_iconv.h" +#endif + + #if HAVE_ICONV extern zend_module_entry iconv_module_entry; #define iconv_module_ptr &iconv_module_entry |
