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/interbase | |
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/interbase')
-rw-r--r-- | ext/interbase/config.h.stub | 3 | ||||
-rw-r--r-- | ext/interbase/config.m4 | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/ext/interbase/config.h.stub b/ext/interbase/config.h.stub deleted file mode 100644 index d54ee2a9d6..0000000000 --- a/ext/interbase/config.h.stub +++ /dev/null @@ -1,3 +0,0 @@ -#ifndef HAVE_IBASE -#define HAVE_IBASE 0 -#endif diff --git a/ext/interbase/config.m4 b/ext/interbase/config.m4 index 2328e25e1a..08f050138a 100644 --- a/ext/interbase/config.m4 +++ b/ext/interbase/config.m4 @@ -16,7 +16,7 @@ AC_ARG_WITH(interbase, IBASE_INCLUDE=-I$IBASE_INCDIR IBASE_LFLAGS=-L$IBASE_LIBDIR IBASE_LIBS="-lgds" - AC_DEFINE(HAVE_IBASE) + AC_DEFINE(HAVE_IBASE,,[ ]) AC_MSG_RESULT(yes) EXTRA_LIBS="$EXTRA_LIBS $IBASE_LFLAGS $IBASE_LIBS" INCLUDES="$INCLUDES $IBASE_INCLUDE" |