diff options
author | grant <grant@pkgsrc.org> | 2003-12-20 10:28:45 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-12-20 10:28:45 +0000 |
commit | cfc7c32925fa9a8133e2b3d8f8411a95b199b1ae (patch) | |
tree | 8cc6ec4e22c3e96870147b059c8181df0e06aada /www/mozilla | |
parent | 4b596947d50996cd434b3e40a872937c2d2c6474 (diff) | |
download | pkgsrc-cfc7c32925fa9a8133e2b3d8f8411a95b199b1ae.tar.gz |
build with Xinerama support if available. libXinerama is only
available as a static library, so no change to PLISTs.
fixes PR pkg/19562 from epg.
Diffstat (limited to 'www/mozilla')
-rw-r--r-- | www/mozilla/Makefile.common | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/www/mozilla/Makefile.common b/www/mozilla/Makefile.common index 7fe24aeea1f..bb80bc1c365 100644 --- a/www/mozilla/Makefile.common +++ b/www/mozilla/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.22 2003/09/27 12:16:42 markd Exp $ +# $NetBSD: Makefile.common,v 1.23 2003/12/20 10:28:45 grant Exp $ MOZ_DIST_VER?= ${MOZ_VER} DISTNAME?= mozilla-source-${MOZ_DIST_VER} @@ -60,6 +60,10 @@ CONFIGURE_ARGS+= --enable-svg CONFIGURE_ARGS+= --enable-calendar .endif +.if exists(${X11BASE}/include/X11/extensions/Xinerama.h) +CONFIGURE_ARGS+= --enable-xinerama +.endif + # avoid creating a .mozilla directory in the users home # directory SCRIPTS_ENV+= HOME="${WRKDIR}" |