From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 12 Sep 2024 14:20:57 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1soioj-003n36-2e for lore@lore.pengutronix.de; Thu, 12 Sep 2024 14:20:57 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1soioi-00042j-Qy; Thu, 12 Sep 2024 14:20:56 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1soigH-0002mL-TK; Thu, 12 Sep 2024 14:12:13 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1soigH-007NTF-E4; Thu, 12 Sep 2024 14:12:13 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1soigH-00BHSy-1G; Thu, 12 Sep 2024 14:12:13 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Thu, 12 Sep 2024 14:12:13 +0200 Message-Id: <20240912121213.2688741-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <01020191bd736848-cdc7caea-1dd9-4d3d-bee3-88de4984cab9-000000@eu-west-1.amazonses.com> References: <01020191bd736848-cdc7caea-1dd9-4d3d-bee3-88de4984cab9-000000@eu-west-1.amazonses.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] weston: build color management module X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Benjamin Gaignard Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 6d447e0278dfc6121ffaf3c246c0a27af05cc5e7. Michael [sent from post-receive hook] On Thu, 12 Sep 2024 14:12:13 +0200, Benjamin Gaignard wrote: > Add an option to build weston color management module. > > Signed-off-by: Benjamin Gaignard > Message-Id: <01020191bd736848-cdc7caea-1dd9-4d3d-bee3-88de4984cab9-000000@eu-west-1.amazonses.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/weston.in b/rules/weston.in > index 10f0e9172d4f..d8e1e8e25b91 100644 > --- a/rules/weston.in > +++ b/rules/weston.in > @@ -40,6 +40,7 @@ menuconfig WESTON > select PIPEWIRE if WESTON_BACKEND_PIPEWIRE > select NEATVNC if WESTON_BACKEND_VNC > select PAM if WESTON_BACKEND_VNC > + select LCMS if WESTON_COLOR_MANAGEMENT_LCMS > prompt "weston " > help > Wayland compositor reference implementation > @@ -129,4 +130,8 @@ config WESTON_TOUCH_CALIBRATOR > Install weston-touch-calibrator tool, interface must be enabled in > weston.ini. > > +config WESTON_COLOR_MANAGEMENT_LCMS > + bool > + prompt "color management module" > + > endif > diff --git a/rules/weston.make b/rules/weston.make > index 35ddab180cc7..b44b661a76d9 100644 > --- a/rules/weston.make > +++ b/rules/weston.make > @@ -45,7 +45,7 @@ WESTON_CONF_OPT := \ > -Dbackend-vnc=$(call ptx/truefalse,PTXCONF_WESTON_BACKEND_VNC) \ > -Dbackend-wayland=$(call ptx/truefalse,PTXCONF_WESTON_GL) \ > -Dbackend-x11=false \ > - -Dcolor-management-lcms=false \ > + -Dcolor-management-lcms=$(call ptx/truefalse,PTXCONF_WESTON_COLOR_MANAGEMENT_LCMS) \ > -Ddemo-clients=$(call ptx/truefalse,PTXCONF_WESTON_IVISHELL_EXAMPLE) \ > -Ddeprecated-color-management-colord=false \ > -Ddeprecated-color-management-static=false \