diff options
author | grant <grant> | 2003-12-20 10:28:45 +0000 |
---|---|---|
committer | grant <grant> | 2003-12-20 10:28:45 +0000 |
commit | 6894c9d51bed7d57fc3307005a5ca6f4a900acc9 (patch) | |
tree | 8cc6ec4e22c3e96870147b059c8181df0e06aada /www | |
parent | 36679393b5bc10fb8aa8c72f3a47f81db61d6a6f (diff) | |
download | pkgsrc-6894c9d51bed7d57fc3307005a5ca6f4a900acc9.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')
-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}" |