0d0ea1f24e
From release announcemenet: After a lengthy QA process, PHP 4.3.4 is finally out! This is a medium size maintenance release, with a fair number of bug fixes. All users are encouraged to upgrade to 4.3.4. Bugfix release PHP 4.3.4 contains, among others, following important fixes, additions and improvements: * Fixed disk_total_space() and disk_free_space() under FreeBSD. * Fixed FastCGI support on Win32. * Fixed FastCGI being unable to bind to a specific IP. * Fixed several bugs in mail() implementation on win32. * Fixed crashes in a number of functions. * Fixed compile failure on MacOSX 10.3 Panther. * Over 60 various bug fixes! For full list of changes in PHP 4.3.4, see ChangeLog: http://www.php.net/ChangeLog-4.php#4.3.4
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
# $NetBSD: Makefile.php,v 1.10 2003/11/08 06:58:10 jdolecek Exp $
|
|
|
|
.include "../../www/php4/Makefile.common"
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../www/php4/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../www/php4/patches
|
|
|
|
USE_LIBTOOL= YES
|
|
GNU_CONFIGURE= YES
|
|
|
|
CONFIGURE_ARGS+= --without-mysql
|
|
CONFIGURE_ARGS+= --without-iconv
|
|
|
|
CONFIGURE_ARGS+= --disable-posix
|
|
|
|
CONFIGURE_ARGS+= --with-config-file-path=${PKG_SYSCONFDIR}
|
|
CONFIGURE_ARGS+= --with-exec-dir=${PREFIX}/libexec/php4
|
|
CONFIGURE_ARGS+= --with-regex=system
|
|
|
|
CONFIGURE_ARGS+= --enable-discard-path
|
|
CONFIGURE_ARGS+= --enable-force-cgi-redirect
|
|
CONFIGURE_ARGS+= --enable-memory-limit
|
|
CONFIGURE_ARGS+= --enable-track-vars
|
|
|
|
# Support for linking some PHP4 extensions statically into the php CGI and
|
|
# into the apache mod_php.so DSO.
|
|
#
|
|
# PHP4_CONFIGURE_ARGS should contain GNU configure options, a complete
|
|
# list of which may be found at:
|
|
#
|
|
# http://www.php.net/manual/en/install.configure.php
|
|
#
|
|
# Note that this is generally not needed as many of the extensions (mysql,
|
|
# pgsql) may be dynamically loaded, and are separately packaged in pkgsrc.
|
|
#
|
|
PHP4_CONFIGURE_ARGS?= # empty
|
|
CONFIGURE_ARGS+= ${PHP4_CONFIGURE_ARGS}
|
|
|
|
CONFIGURE_ENV+= ac_cv_lib_pam_pam_start=no
|
|
CONFIGURE_ENV+= EXTENSION_DIR="${PREFIX}/${PHP_EXTENSION_DIR}"
|