90c1c1709f
Some highlights of changes since 4.2.3: * PCRE updated to 4.3, GD to 2.0.15 * improved Apache2 support * much improved stream & URL wrapper support, output compression support * added CLI (Command Line Interface) SAPI * debug_backtrace() backported from ZendEngine2 * faster build system * huge number of other bug fixes and improvements Packaging changes: * 'pcre', 'xml', and 'session' modules folded back into main package - 'pcre' and 'xml' is required by PEAR, and 'session' is just too essential to be separate * 'gd' module now uses bundled PHP GD library, which is better integrated * PHP modules use shared distinfo when possible to ease future PHP updates * ${PREFIX}/bin/php is now CLI version, ${PREFIX}/libexec/cgi-big/php remains CGI version
28 lines
689 B
Makefile
28 lines
689 B
Makefile
# $NetBSD: Makefile,v 1.7 2003/08/31 19:55:27 jdolecek Exp $
|
|
|
|
MODNAME= dba
|
|
CATEGORIES+= databases
|
|
PKGREVISION= # empty
|
|
COMMENT= PHP4 extension for DBM database access
|
|
|
|
USE_BUILDLINK2= YES
|
|
|
|
.include "../../www/php4/Makefile.module"
|
|
|
|
CONFIGURE_ARGS+= --enable-${MODNAME}=shared
|
|
|
|
CONFIGURE_ARGS+= --without-cdb
|
|
CONFIGURE_ARGS+= --without-db2
|
|
CONFIGURE_ARGS+= --without-db3
|
|
CONFIGURE_ARGS+= --without-dbm
|
|
|
|
.if exists(/usr/include/ndbm.h)
|
|
CONFIGURE_ARGS+= --without-gdbm
|
|
CONFIGURE_ARGS+= --with-ndbm=/usr
|
|
.else
|
|
CONFIGURE_ARGS+= --with-gdbm=shared,${BUILDLINK_PREFIX.gdbm}
|
|
CONFIGURE_ARGS+= --without-ndbm
|
|
.include "../../databases/gdbm/buildlink2.mk"
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|