diff options
author | Sascha Schumann <sas@php.net> | 1999-12-30 04:07:46 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-12-30 04:07:46 +0000 |
commit | 2c99bef442d71a455628628e932daf26aaec8a46 (patch) | |
tree | f4a7ca3e976ff07d3d6a730bded4ed1598b6ff8d /ext/xml | |
parent | e3af8ed3217b0a3bd46382e523bb12cfdc12e230 (diff) | |
download | php-git-2c99bef442d71a455628628e932daf26aaec8a46.tar.gz |
Get rid of config.h.stub. Note that you should embed a comment about
what the respective define does into the AC_DEFINE macro. I.e.
AC_DEFINE(HAVE_FOO, 1, [Whether you have FOO])
Diffstat (limited to 'ext/xml')
-rw-r--r-- | ext/xml/config.h.stub | 4 | ||||
-rw-r--r-- | ext/xml/config.m4 | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/ext/xml/config.h.stub b/ext/xml/config.h.stub deleted file mode 100644 index a4abe9b584..0000000000 --- a/ext/xml/config.h.stub +++ /dev/null @@ -1,4 +0,0 @@ -/* define if you want to use the xml extension */ - -/* Define if you have the expat (XML Parser Toolkit) library */ -#define HAVE_LIBEXPAT 0 diff --git a/ext/xml/config.m4 b/ext/xml/config.m4 index 64e7f70732..a346e05598 100644 --- a/ext/xml/config.m4 +++ b/ext/xml/config.m4 @@ -35,7 +35,7 @@ AC_ARG_WITH(xml, fi fi fi - AC_DEFINE(HAVE_LIBEXPAT, 1) + AC_DEFINE(HAVE_LIBEXPAT, 1, [ ]) PHP_EXTENSION(xml, $shared) if test "$shared" != "yes"; then EXTRA_LIBS="$EXTRA_LIBS $XML_LIBS" |