diff options
author | tron <tron> | 2009-09-23 18:23:05 +0000 |
---|---|---|
committer | tron <tron> | 2009-09-23 18:23:05 +0000 |
commit | 28c51bbd6d92bbf26330200f141117766fb10f00 (patch) | |
tree | 3c5540ca5a0196564ab5065e5a7df664dea4db71 /lang | |
parent | eee2a838a75e4ef1b642a212e0f85338ded9f302 (diff) | |
download | pkgsrc-28c51bbd6d92bbf26330200f141117766fb10f00.tar.gz |
Fix build problem for Mac OS X Snow Leopard 64-Bit ABI.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gawk/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lang/gawk/Makefile b/lang/gawk/Makefile index 0bb1092ed4e..567673dc3d0 100644 --- a/lang/gawk/Makefile +++ b/lang/gawk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2009/08/12 18:07:15 abs Exp $ +# $NetBSD: Makefile,v 1.42 2009/09/23 18:23:05 tron Exp $ DISTNAME= gawk-3.1.7 CATEGORIES= lang @@ -37,6 +37,10 @@ PKG_SUPPORTED_OPTIONS= portals CONFIGURE_ARGS+= --enable-portals .endif +.if !empty(MACHINE_PLATFORM:MDarwin-*-x86_64) +CFLAGS+= -Dvm_region=vm_region_64 +.endif + BUILDLINK_API_DEPENDS.gettext+= gettext-lib>=0.10.36 .include "../../devel/gettext-lib/buildlink3.mk" |