FreeBSD Bugzilla – Attachment 198188 Details for
Bug 227509
graphics/mesa-{dri,libs}: enable WAYLAND by default
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
v0
mesa.wayland.diff (text/plain), 5.34 KB, created by
Jan Beich
on 2018-10-15 20:13:42 UTC
(
hide
)
Description:
v0
Filename:
MIME Type:
Creator:
Jan Beich
Created:
2018-10-15 20:13:42 UTC
Size:
5.34 KB
patch
obsolete
>From 725c6c9ea1fdb3486642d13a2ea7daf81ae924b6 Mon Sep 17 00:00:00 2001 >From: Jan Beich <jbeich@FreeBSD.org> >Date: Mon, 15 Oct 2018 19:20:45 +0000 >Subject: [PATCH] graphics/mesa-libs: enable WAYLAND by default here and in > consumers > >PR: 227509 >Approved by: x11 (???) >Exp-run by: antoine (NOT YET) >--- > graphics/glfw/Makefile | 3 ++- > graphics/mesa-dri/Makefile | 4 ++-- > graphics/mesa-libs/Makefile | 3 ++- > multimedia/libva-utils/Makefile | 2 ++ > multimedia/libva/Makefile | 2 ++ > sysutils/gnome-control-center/Makefile | 2 ++ > www/webkit2-gtk3/Makefile | 4 ++-- > x11-toolkits/gtk30/Makefile | 4 ++-- > 8 files changed, 16 insertions(+), 8 deletions(-) > >diff --git a/graphics/glfw/Makefile b/graphics/glfw/Makefile >index cadc2abc675e..96d5273acea0 100644 >--- a/graphics/glfw/Makefile >+++ b/graphics/glfw/Makefile >@@ -3,7 +3,7 @@ > > PORTNAME= glfw > PORTVERSION= 3.2.1 >-PORTREVISION= 4 >+PORTREVISION= 5 > CATEGORIES= graphics > MASTER_SITES= SF > >@@ -22,6 +22,7 @@ PORTDOCS= * > PORTEXAMPLES= * > > OPTIONS_DEFINE= DOCS EXAMPLES WAYLAND >+OPTIONS_DEFAULT=WAYLAND > OPTIONS_EXCLUDE_FreeBSD_10= WAYLAND # needs dev/evdev/input.h > > WAYLAND_BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols >diff --git a/graphics/mesa-dri/Makefile b/graphics/mesa-dri/Makefile >index 50efe70b07ef..a8e1cee33801 100644 >--- a/graphics/mesa-dri/Makefile >+++ b/graphics/mesa-dri/Makefile >@@ -3,7 +3,7 @@ > > PORTNAME= mesa-dri > PORTVERSION= ${MESAVERSION} >-PORTREVISION= 1 >+PORTREVISION= 2 > CATEGORIES= graphics > > COMMENT= OpenGL hardware acceleration drivers for DRI2+ >@@ -11,7 +11,7 @@ COMMENT= OpenGL hardware acceleration drivers for DRI2+ > USE_XORG= xorgproto x11 xdamage xext xfixes xshmfence xv xvmc > > OPTIONS_DEFINE= TEXTURE VAAPI VDPAU WAYLAND >-OPTIONS_DEFAULT=TEXTURE >+OPTIONS_DEFAULT=TEXTURE WAYLAND > OPTIONS_SUB= yes > > TEXTURE_DESC= Enable texture-float support (patent encumbered) >diff --git a/graphics/mesa-libs/Makefile b/graphics/mesa-libs/Makefile >index c61aa4e276fe..a260e6b4b853 100644 >--- a/graphics/mesa-libs/Makefile >+++ b/graphics/mesa-libs/Makefile >@@ -3,7 +3,7 @@ > > PORTNAME= mesa-libs > PORTVERSION= ${MESAVERSION} >-PORTREVISION= 2 >+PORTREVISION= 3 > CATEGORIES= graphics > > COMMENT= OpenGL libraries that support GLX and EGL clients >@@ -12,6 +12,7 @@ USE_XORG= xorgproto x11 xcb xdamage xext \ > xfixes xshmfence xxf86vm > > OPTIONS_DEFINE= WAYLAND >+OPTIONS_DEFAULT=WAYLAND > OPTIONS_SUB= yes > > WAYLAND_DESC= Enable support for the Wayland platform in EGL >diff --git a/multimedia/libva-utils/Makefile b/multimedia/libva-utils/Makefile >index fa5a10043c8c..c4ad8ebe637a 100644 >--- a/multimedia/libva-utils/Makefile >+++ b/multimedia/libva-utils/Makefile >@@ -2,6 +2,7 @@ > > PORTNAME= libva-utils > PORTVERSION= 2.3.0 >+PORTREVISION= 1 > CATEGORIES= multimedia > > MAINTAINER= madpilot@FreeBSD.org >@@ -22,6 +23,7 @@ USE_GITHUB= yes > GH_ACCOUNT= intel > > OPTIONS_DEFINE= DEBUG WAYLAND >+OPTIONS_DEFAULT=WAYLAND > WAYLAND_DESC= Support wayland protocol > OPTIONS_SUB= yes > >diff --git a/multimedia/libva/Makefile b/multimedia/libva/Makefile >index 5e9d29b3607b..3d7783326c3b 100644 >--- a/multimedia/libva/Makefile >+++ b/multimedia/libva/Makefile >@@ -2,6 +2,7 @@ > > PORTNAME= libva > PORTVERSION= 2.3.0 >+PORTREVISION= 1 > CATEGORIES= multimedia > > MAINTAINER= madpilot@FreeBSD.org >@@ -30,6 +31,7 @@ LDFLAGS+= -lpthread > CFLAGS+= -DHAVE_LINUX_INTEGER_TYPES > > OPTIONS_DEFINE= DEBUG WAYLAND >+OPTIONS_DEFAULT=WAYLAND > WAYLAND_DESC= Support wayland protocol > OPTIONS_SUB= yes > >diff --git a/sysutils/gnome-control-center/Makefile b/sysutils/gnome-control-center/Makefile >index acab83da349b..c5997c479791 100644 >--- a/sysutils/gnome-control-center/Makefile >+++ b/sysutils/gnome-control-center/Makefile >@@ -3,6 +3,7 @@ > > PORTNAME= gnome-control-center > PORTVERSION= 3.28.2 >+PORTREVISION= 1 > CATEGORIES= sysutils gnome > MASTER_SITES= GNOME > DIST_SUBDIR= gnome3 >@@ -54,6 +55,7 @@ GLIB_SCHEMAS= org.gnome.ControlCenter.gschema.xml > OPTIONS_SUB= yes > > OPTIONS_DEFINE= WAYLAND >+OPTIONS_DEFAULT=WAYLAND > > OPTIONS_DEFINE_i386= CHEESE > OPTIONS_DEFAULT_i386= CHEESE >diff --git a/www/webkit2-gtk3/Makefile b/www/webkit2-gtk3/Makefile >index 73909bcfa535..ccf104fc82f3 100644 >--- a/www/webkit2-gtk3/Makefile >+++ b/www/webkit2-gtk3/Makefile >@@ -3,7 +3,7 @@ > > PORTNAME= webkit > PORTVERSION= 2.20.5 >-PORTREVISION= 1 >+PORTREVISION= 2 > CATEGORIES= www > MASTER_SITES= http://webkitgtk.org/releases/ > PKGNAMESUFFIX= 2-gtk3 >@@ -64,7 +64,7 @@ INSTALL_TARGET= install > BROWSER_PLUGINS_DIR?= ${LOCALBASE}/lib/browser_plugins/symlinks/webkit-gtk3 > > OPTIONS_DEFINE= DEBUG GEOIP NPAPI WAYLAND >-OPTIONS_DEFAULT= GEOIP >+OPTIONS_DEFAULT= GEOIP WAYLAND > OPTIONS_DEFAULT_i386= NPAPI > OPTIONS_DEFAULT_amd64= NPAPI > OPTIONS_SUB= yes >diff --git a/x11-toolkits/gtk30/Makefile b/x11-toolkits/gtk30/Makefile >index 909722844a22..890bc621de88 100644 >--- a/x11-toolkits/gtk30/Makefile >+++ b/x11-toolkits/gtk30/Makefile >@@ -5,7 +5,7 @@ > > PORTNAME= gtk > PORTVERSION= 3.22.30 >-PORTREVISION= 2 >+PORTREVISION= 3 > CATEGORIES= x11-toolkits > MASTER_SITES= GNOME/sources/gtk+/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} > PKGNAMESUFFIX= 3 >@@ -54,7 +54,7 @@ GLIB_SCHEMAS= org.gtk.Demo.gschema.xml \ > org.gtk.Settings.FileChooser.gschema.xml > > OPTIONS_DEFINE= CUPS CLOUDPRINT COLORD DEBUG BROADWAY WAYLAND >-OPTIONS_DEFAULT=CUPS COLORD BROADWAY >+OPTIONS_DEFAULT=CUPS COLORD BROADWAY WAYLAND > OPTIONS_EXCLUDE_FreeBSD_10= WAYLAND > OPTIONS_SUB= yes >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 227509
:
192508
|
198188
|
198417
|
198419
|
198710
|
198928
|
199012