summaryrefslogtreecommitdiff
path: root/ext/yp
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-12-30 04:52:19 +0000
committerSascha Schumann <sas@php.net>1999-12-30 04:52:19 +0000
commitcf5a5fb1dd3800b9c7f69bb23326277eab3a4c72 (patch)
tree797b72cf3dd3b02052002d0398a3a79e9c768dfa /ext/yp
parent2c99bef442d71a455628628e932daf26aaec8a46 (diff)
downloadphp-git-cf5a5fb1dd3800b9c7f69bb23326277eab3a4c72.tar.gz
Whoops, defining them to empty values generates many parse errors.
Defaulting to 1.
Diffstat (limited to 'ext/yp')
-rw-r--r--ext/yp/config.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/yp/config.m4 b/ext/yp/config.m4
index 151661abf8..dd7eff9a0b 100644
--- a/ext/yp/config.m4
+++ b/ext/yp/config.m4
@@ -8,13 +8,13 @@ AC_ARG_WITH(yp,
[
if test "$withval" = "yes"; then
AC_MSG_RESULT(yes)
- AC_DEFINE(HAVE_YP,,[ ])
+ AC_DEFINE(HAVE_YP,1,[ ])
PHP_EXTENSION(yp)
if test `uname` = "SunOS";then
release=`uname -r`
case "$release" in
5*)
- AC_DEFINE(SOLARIS_YP,,[ ])
+ AC_DEFINE(SOLARIS_YP,1,[ ])
;;
*)
;;