Sat Feb 21 12:56:12 2009 UTC ()
Work around for pdksh bug documented in PR#40709
This should work on at least SunOS 5.10 and 5.11


(adrianp)
diff -r1.9 -r1.10 pkgsrc/misc/php-mbstring/Makefile

cvs diff -r1.9 -r1.10 pkgsrc/misc/php-mbstring/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/misc/php-mbstring/Attic/Makefile 2008/06/12 02:14:37 1.9
+++ pkgsrc/misc/php-mbstring/Attic/Makefile 2009/02/21 12:56:12 1.10
@@ -1,16 +1,24 @@ @@ -1,16 +1,24 @@
1# $NetBSD: Makefile,v 1.9 2008/06/12 02:14:37 joerg Exp $ 1# $NetBSD: Makefile,v 1.10 2009/02/21 12:56:12 adrianp Exp $
2 2
3MODNAME= mbstring 3MODNAME= mbstring
4CATEGORIES+= misc 4CATEGORIES+= misc
5COMMENT= PHP extension for multibyte characters support (currently, Japanese only) 5COMMENT= PHP extension for multibyte characters support (currently, Japanese only)
6 6
7PKG_DESTDIR_SUPPORT= user-destdir 7PKG_DESTDIR_SUPPORT= user-destdir
8 8
9CONFLICTS= php-mbstring-[0-9]* 9CONFLICTS= php-mbstring-[0-9]*
10 10
11USE_PHP_EXT_PATCHES= yes 11USE_PHP_EXT_PATCHES= yes
12 12
13CONFIGURE_ARGS+= --enable-${MODNAME}=shared,${BUILDLINK_DIR} 13CONFIGURE_ARGS+= --enable-${MODNAME}=shared,${BUILDLINK_DIR}
14 14
 15.include "../../mk/bsd.prefs.mk"
 16
 17# Work around for pdksh bug documented in PR#40709
 18# This should work on at least SunOS 5.10 and 5.11
 19.if ${OPSYS} == "SunOS"
 20CONFIG_SHELL= /usr/bin/ksh
 21.endif
 22
15.include "../../lang/php/ext.mk" 23.include "../../lang/php/ext.mk"
16.include "../../mk/bsd.pkg.mk" 24.include "../../mk/bsd.pkg.mk"