diff options
author | Pierre Joye <pajoye@php.net> | 2008-06-22 21:49:06 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2008-06-22 21:49:06 +0000 |
commit | 5d112c35b70a54f801710344fe51aa55a57d8dfa (patch) | |
tree | 92b705ef6f5ae417253150bda72489edd6319f18 /ext/libxml | |
parent | f90b9d2979b21a505e4e2a2d207a37dc388b48f6 (diff) | |
download | php-git-5d112c35b70a54f801710344fe51aa55a57d8dfa.tar.gz |
- do not show libxml as enabled when libs are missing so ADD_EXTENSION_DEP('myext', 'libxml') can do its job
Diffstat (limited to 'ext/libxml')
-rw-r--r-- | ext/libxml/config.w32 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/libxml/config.w32 b/ext/libxml/config.w32 index bfac5c839a..5ba19a3e7b 100644 --- a/ext/libxml/config.w32 +++ b/ext/libxml/config.w32 @@ -15,6 +15,9 @@ if (PHP_LIBXML == "yes") { ADD_DEF_FILE("ext\\libxml\\php_libxml2.def"); } ADD_EXTENSION_DEP('libxml', 'iconv'); + } else { + WARNING("libxml support can't be enabled, iconv or libxml are missing") + PHP_LIBXML = "no" } } |