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/dbase | |
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/dbase')
-rw-r--r-- | ext/dbase/config.h.stub | 3 | ||||
-rw-r--r-- | ext/dbase/config.m4 | 6 |
2 files changed, 3 insertions, 6 deletions
diff --git a/ext/dbase/config.h.stub b/ext/dbase/config.h.stub deleted file mode 100644 index c8bf0adbe2..0000000000 --- a/ext/dbase/config.h.stub +++ /dev/null @@ -1,3 +0,0 @@ -/* Define if you want to use the supplied dbase library */ -#define DBASE 0 - diff --git a/ext/dbase/config.m4 b/ext/dbase/config.m4 index 1241888987..b8746c6825 100644 --- a/ext/dbase/config.m4 +++ b/ext/dbase/config.m4 @@ -6,13 +6,13 @@ AC_ARG_WITH(dbase, [ if test "$withval" = "yes"; then AC_MSG_RESULT(yes) - AC_DEFINE(DBASE,1) + AC_DEFINE(DBASE,1,[ ]) PHP_EXTENSION(dbase) else AC_MSG_RESULT(no) - AC_DEFINE(DBASE,0) + AC_DEFINE(DBASE,0,[ ]) fi ],[ AC_MSG_RESULT(no) - AC_DEFINE(DBASE,0) + AC_DEFINE(DBASE,0,[ ]) ]) |