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/sybase | |
| 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/sybase')
| -rw-r--r-- | ext/sybase/config.h.stub | 4 | ||||
| -rw-r--r-- | ext/sybase/config.m4 | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/ext/sybase/config.h.stub b/ext/sybase/config.h.stub deleted file mode 100644 index 85202aa97d..0000000000 --- a/ext/sybase/config.h.stub +++ /dev/null @@ -1,4 +0,0 @@ -/* Define if you have libdnet_stub (used for Sybase support) */ -#define HAVE_LIBDNET_STUB 0 - -#define HAVE_SYBASE 0 diff --git a/ext/sybase/config.m4 b/ext/sybase/config.m4 index 8de191127f..cd0928b1ec 100644 --- a/ext/sybase/config.m4 +++ b/ext/sybase/config.m4 @@ -20,9 +20,9 @@ AC_ARG_WITH(sybase, PHP_EXTENSION(sybase) AC_CHECK_LIB(dnet_stub, dnet_addr, [ AC_ADD_LIBRARY(dnet_stub) - AC_DEFINE(HAVE_LIBDNET_STUB) + AC_DEFINE(HAVE_LIBDNET_STUB,,[ ]) ]) - AC_DEFINE(HAVE_SYBASE) + AC_DEFINE(HAVE_SYBASE,,[ ]) else AC_MSG_RESULT(no) fi |
