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/filepro | |
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/filepro')
-rw-r--r-- | ext/filepro/config.h.stub | 2 | ||||
-rw-r--r-- | ext/filepro/config.m4 | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/ext/filepro/config.h.stub b/ext/filepro/config.h.stub deleted file mode 100644 index 0a273b1502..0000000000 --- a/ext/filepro/config.h.stub +++ /dev/null @@ -1,2 +0,0 @@ -#define HAVE_FILEPRO 0 - diff --git a/ext/filepro/config.m4 b/ext/filepro/config.m4 index 2c0fd3b43b..a0036668b2 100644 --- a/ext/filepro/config.m4 +++ b/ext/filepro/config.m4 @@ -4,14 +4,14 @@ AC_MSG_CHECKING(whether to include the bundled filePro support) AC_ARG_WITH(filepro, [ --with-filepro Include the bundled read-only filePro support],[ if test "$withval" != "no"; then - AC_DEFINE(HAVE_FILEPRO, 1) + AC_DEFINE(HAVE_FILEPRO, 1, [ ]) AC_MSG_RESULT(yes) PHP_EXTENSION(filepro) else - AC_DEFINE(HAVE_FILEPRO, 0) + AC_DEFINE(HAVE_FILEPRO, 0, [ ]) AC_MSG_RESULT(no) fi ],[ - AC_DEFINE(HAVE_FILEPRO, 0) + AC_DEFINE(HAVE_FILEPRO, 0, [ ]) AC_MSG_RESULT(no) ]) |