From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id EA9F8138247 for ; Sun, 5 Jan 2014 07:40:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72292E09B5; Sun, 5 Jan 2014 07:39:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 111B2E09B5 for ; Sun, 5 Jan 2014 07:39:58 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 38F9233F68E for ; Sun, 5 Jan 2014 07:39:57 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2306) id 6CD962004E; Sun, 5 Jan 2014 07:39:55 +0000 (UTC) From: "Alexandre Rostovtsev (tetromino)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, tetromino@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/gnome-control-center/files: gnome-control-center-2.32.1-gmodule.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: gnome-control-center-2.32.1-gmodule.patch X-VCS-Directories: gnome-base/gnome-control-center/files X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Rostovtsev Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140105073955.6CD962004E@flycatcher.gentoo.org> Date: Sun, 5 Jan 2014 07:39:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9edd11ab-a983-412b-accf-cdc8e2089f07 X-Archives-Hash: cb1bc77e615f72f2bee3eeb21cbe9372 tetromino 14/01/05 07:39:55 Added: gnome-control-center-2.32.1-gmodule.patch Log: Fix underlinking failure (bug #497112, thanks to d_dart). (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61) Revision Changes Path 1.1 gnome-base/gnome-control-center/files/gnome-control-center-2.32.1-gmodule.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-control-center/files/gnome-control-center-2.32.1-gmodule.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-control-center/files/gnome-control-center-2.32.1-gmodule.patch?rev=1.1&content-type=text/plain Index: gnome-control-center-2.32.1-gmodule.patch =================================================================== diff --git a/capplets/common/Makefile.am b/capplets/common/Makefile.am index 70ad44f..52ea6e6 100644 --- a/capplets/common/Makefile.am +++ b/capplets/common/Makefile.am @@ -48,7 +48,8 @@ libcommon_la_LIBADD = \ $(METACITY_LIBS) \ $(DBUS_LIBS) \ $(GNOME_DESKTOP_LIBS) \ - $(GIO_LIBS) + $(GIO_LIBS) \ + $(GMODULE_LIBS) gnome_theme_test_SOURCES = \ gnome-theme-test.c diff --git a/configure.ac b/configure.ac index 4bc8d9b..f869f93 100644 --- a/configure.ac +++ b/configure.ac @@ -132,6 +132,7 @@ PKG_CHECK_MODULES(METACITY, libmetacity-private >= 2.23.1) PKG_CHECK_MODULES(TYPING, glib-2.0 > 2.11 gconf-2.0 gtk+-2.0) PKG_CHECK_MODULES(GSD_DBUS, gnome-settings-daemon) PKG_CHECK_MODULES(GIO, gio-2.0) +PKG_CHECK_MODULES(GMODULE, gmodule-2.0) gtk_lib_dir=`$PKG_CONFIG --variable libdir gtk+-2.0` gtk_binary_version=`$PKG_CONFIG --variable gtk_binary_version gtk+-2.0` diff --git a/libwindow-settings/Makefile.am b/libwindow-settings/Makefile.am index ee6984d..0464597 100644 --- a/libwindow-settings/Makefile.am +++ b/libwindow-settings/Makefile.am @@ -17,7 +17,9 @@ libgnome_window_settings_la_LDFLAGS = \ -no-undefined \ -version-info 1:0:0 -libgnome_window_settings_la_LIBADD = $(GNOMECC_LIBS) +libgnome_window_settings_la_LIBADD = \ + $(GNOMECC_LIBS) \ + $(GMODULE_LIBS) libgnome_window_settings_la_SOURCES = \ gnome-window-manager.c \