mirror of
https://github.com/php/php-src.git
synced 2024-12-04 07:14:10 +08:00
16 lines
356 B
Plaintext
16 lines
356 B
Plaintext
dnl $Id$
|
|
dnl config.m4 for extension yp
|
|
dnl don't forget to call PHP_EXTENSION(yp)
|
|
|
|
PHP_ARG_ENABLE(yp,whether to include YP support,
|
|
[ --enable-yp Include YP support])
|
|
|
|
if test "$PHP_YP" != "no"; then
|
|
AC_DEFINE(HAVE_YP,1,[ ])
|
|
PHP_EXTENSION(yp, $ext_shared)
|
|
case "$host_alias" in
|
|
*solaris*)
|
|
AC_DEFINE(SOLARIS_YP,1,[ ]) ;;
|
|
esac
|
|
fi
|