mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
eb923bf6fc
MFH: - Some cleanups here and there MFH: - Enabled PHP_CHECK_CONFIGURE_OPTIONS (checks for unknown configure MFH: options) # Note to Marcus: ext/dba/config.m4 needs to be "converted" to use # the PHP_ARG_* options. I did't touch it needs quite a lot of work to keep # it's current behaviour regarding "enabled-by-default" parts of it. # # Hint: By using the PHP_ARG_* options you have the "default" option.. ;)
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
dnl
|
|
dnl $Id$
|
|
dnl
|
|
|
|
PHP_ARG_WITH(milter, for Milter support,
|
|
[ --with-milter[=DIR] Build PHP as Milter application], no, no)
|
|
|
|
if test "$PHP_MILTER" != "no"; then
|
|
if test "$PHP_MILTER" = "yes"; then
|
|
if test -f /usr/lib/libmilter.a ; then
|
|
MILTERPATH=/usr/lib
|
|
else
|
|
if test -f /usr/lib/libmilter/libmilter.a ; then
|
|
MILTERPATH=/usr/lib/libmilter
|
|
else
|
|
AC_MSG_ERROR([Unable to find libmilter.a])
|
|
fi
|
|
fi
|
|
else
|
|
MILTERPATH=$PHP_MILTER
|
|
fi
|
|
|
|
SAPI_MILTER_PATH=sapi/milter/php-milter
|
|
PHP_BUILD_THREAD_SAFE
|
|
PHP_ADD_MAKEFILE_FRAGMENT($abs_srcdir/sapi/milter/Makefile.frag)
|
|
PHP_SELECT_SAPI(milter, program, php_milter.c getopt.c,,'$(SAPI_MILTER_PATH)')
|
|
PHP_ADD_LIBRARY_WITH_PATH(milter, $MILTERPATH,)
|
|
BUILD_MILTER="\$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) \$(EXTRA_LDFLAGS) \$(LDFLAGS) \$(PHP_RPATHS) \$(PHP_GLOBAL_OBJS) \$(PHP_SAPI_OBJS) \$(EXTRA_LIBS) \$(ZEND_EXTRA_LIBS) -o \$(SAPI_MILTER_PATH)"
|
|
INSTALL_IT="\$(INSTALL) -m 0755 \$(SAPI_MILTER_PATH) \$(bindir)/php-milter"
|
|
PHP_SUBST(SAPI_MILTER_PATH)
|
|
PHP_SUBST(BUILD_MILTER)
|
|
fi
|