Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 389744 Details for
Bug 529868
gnome-extra/cinnamon-control-center-2.4.0 version bump
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Optional colord and wacom support patch
cinnamon-control-center-2.4.0-optional.patch (text/plain), 2.85 KB, created by
Allen Holl
on 2014-11-19 16:16:18 UTC
(
hide
)
Description:
Optional colord and wacom support patch
Filename:
MIME Type:
Creator:
Allen Holl
Created:
2014-11-19 16:16:18 UTC
Size:
2.85 KB
patch
obsolete
>--- /a/configure.ac >+++ /b/configure.ac >@@ -124,7 +124,6 @@ > PKG_CHECK_MODULES(NETWORK_PANEL, $COMMON_MODULES gmodule-2.0) > PKG_CHECK_MODULES(POWER_PANEL, $COMMON_MODULES upower-glib >= 0.9.1 > cinnamon-settings-daemon >= $CSD_REQUIRED_VERSION) >-PKG_CHECK_MODULES(COLOR_PANEL, $COMMON_MODULES colord >= 0.1.8) > PKG_CHECK_MODULES(REGION_PANEL, $COMMON_MODULES libgnomekbd >= 2.91.91 > polkit-gobject-1 >= $POLKIT_REQUIRED_VERSION > libxklavier >= 5.1 libgnomekbdui >= 2.91.91) >@@ -201,15 +200,51 @@ > AC_SUBST(CUPS_LIBS) > fi > >+build_color=false >+AC_ARG_ENABLE(color, >+ AC_HELP_STRING([--disable-color], >+ [disable color management panel]), >+ [case "${enableval}" in >+ yes) WANT_COLOR=yes ;; >+ no) WANT_COLOR=no ;; >+ *) AC_MSG_ERROR(bad value ${enableval} for --disable-color) ;; >+ esac], >+ [WANT_COLOR=yes]) dnl Default value >+ >+if test x$WANT_COLOR = xyes; then >+ PKG_CHECK_MODULES(COLOR_PANEL, $COMMON_MODULES colord >= 0.1.8) >+ build_color=true >+fi >+if test "x$build_color" = xtrue ; then >+ AC_DEFINE(BUILD_COLOR, 1, [Define to 1 to build the Color panel]) >+fi >+AM_CONDITIONAL(BUILD_COLOR, test "x$build_color" = "xtrue") >+AC_SUBST(COLOR_PANEL_CFLAGS) >+AC_SUBST(COLOR_PANEL_LIBS) >+ > build_wacom=false >-PKG_CHECK_MODULES(WACOM_PANEL, [$COMMON_MODULES >+AC_ARG_ENABLE(wacom, >+ AC_HELP_STRING([--disable-wacom], >+ [disable wacom management panel]), >+ [case "${enableval}" in >+ yes) WANT_WACOM=yes ;; >+ no) WANT_WACOM=no ;; >+ *) AC_MSG_ERROR(bad value ${enableval} for --disable-wacom) ;; >+ esac], >+ [WANT_WACOM=yes]) dnl Default value >+ >+if test x$WANT_WACOM = xyes; then >+ PKG_CHECK_MODULES(WACOM_PANEL, [$COMMON_MODULES > cinnamon-settings-daemon >= $CSD_REQUIRED_VERSION > xi >= 1.2 x11 libwacom >= $LIBWACOM_REQUIRED_VERSION > cinnamon-desktop >- gtk+-3.0 >= 3.8.0], >- [build_wacom="true" AC_DEFINE(HAVE_WACOM, 1, [Define if wacom is being build])], [build_wacom="false"]) >- >+ gtk+-3.0 >= 3.8.0]) >+ build_wacom="true" >+ AC_DEFINE(HAVE_WACOM, 1, [Define if wacom is being build])] >+fi > AM_CONDITIONAL(BUILD_WACOM, test "x$build_wacom" = "xtrue") >+AC_SUBST(WACOM_PANEL_CFLAGS) >+AC_SUBST(WACOM_PANEL_LIBS) > > # This is a hard-dependency for the region and user-accounts panels > PKG_CHECK_MODULES(ISOCODES, iso-codes) >--- /a/panels/Makefile.am >+++ /b/panels/Makefile.am >@@ -3,7 +3,6 @@ > enabled_panels = \ > common \ > screen \ >- color \ > display \ > region \ > universal-access \ >@@ -14,6 +13,12 @@ > > disabled_panels = $(NULL) > >+if BUILD_COLOR >+enabled_panels += color >+else >+disabled_panels += color >+endif >+ > if BUILD_NETWORK > enabled_panels += network > else
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 529868
:
389742
| 389744 |
389876
|
389878
|
393612
|
393614