summaryrefslogtreecommitdiff
path: root/ext/dbase
diff options
context:
space:
mode:
Diffstat (limited to 'ext/dbase')
-rw-r--r--ext/dbase/config.h.stub3
-rw-r--r--ext/dbase/config.m46
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,[ ])
])