diff options
author | jperkin <jperkin> | 2014-01-22 15:21:23 +0000 |
---|---|---|
committer | jperkin <jperkin> | 2014-01-22 15:21:23 +0000 |
commit | 163e14f96c82bfd7a81445dd1a082422c02478a2 (patch) | |
tree | 1266aae3c5f1e5b7ccb8a03ad7ce81c683111d03 | |
parent | 7bd302918f9821d8e9ee5c1f2d75f6b8ddaf0127 (diff) | |
download | pkgsrc-163e14f96c82bfd7a81445dd1a082422c02478a2.tar.gz |
Use --disable-fast-malloc on SunOS x86_64, it doesn't work right now.
-rw-r--r-- | www/webkit-gtk/Makefile.common | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/www/webkit-gtk/Makefile.common b/www/webkit-gtk/Makefile.common index 40317b848c3..5ebe7efdf65 100644 --- a/www/webkit-gtk/Makefile.common +++ b/www/webkit-gtk/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.28 2013/12/11 07:56:26 wiz Exp $ +# $NetBSD: Makefile.common,v 1.29 2014/01/22 15:21:23 jperkin Exp $ # used by www/webkit-gtk/Makefile # used by www/webkit-gtk3/Makefile @@ -53,6 +53,10 @@ CXXFLAGS.SunOS+= -fpermissive CXXFLAGS+= -std=c++11 -Wno-c++11-narrowing .endif +.if !empty(MACHINE_PLATFORM:MSunOS-*-x86_64) +CONFIGURE_ARGS+= --disable-fast-malloc +.endif + BUILDLINK_API_DEPENDS.glib2+= glib2>=2.32.1 .include "../../devel/glib2/buildlink3.mk" BUILDLINK_API_DEPENDS.gobject-introspection+= gobject-introspection>=0.9.5 |