diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-12-26 03:16:35 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-12-26 03:16:35 +0800 |
commit | 2a4493db32ec964eeb59b362dfc5b8ac4d847e8a (patch) | |
tree | 7ea35c9af2a1c9dd8e26f58f3a40597a47bef8ee /sysutils/gnome-control-center/files | |
parent | 2f45dbdc55c734da7d33a760d2e94a57030ab5e7 (diff) | |
download | marcuscom-ports-2a4493db32ec964eeb59b362dfc5b8ac4d847e8a.tar marcuscom-ports-2a4493db32ec964eeb59b362dfc5b8ac4d847e8a.tar.gz marcuscom-ports-2a4493db32ec964eeb59b362dfc5b8ac4d847e8a.tar.bz2 marcuscom-ports-2a4493db32ec964eeb59b362dfc5b8ac4d847e8a.tar.lz marcuscom-ports-2a4493db32ec964eeb59b362dfc5b8ac4d847e8a.tar.xz marcuscom-ports-2a4493db32ec964eeb59b362dfc5b8ac4d847e8a.tar.zst marcuscom-ports-2a4493db32ec964eeb59b362dfc5b8ac4d847e8a.zip |
Update to 2.29.4.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13304 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'sysutils/gnome-control-center/files')
4 files changed, 45 insertions, 0 deletions
diff --git a/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me-password.c b/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me-password.c new file mode 100644 index 000000000..69c01de97 --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me-password.c @@ -0,0 +1,15 @@ +--- capplets/about-me/gnome-about-me-password.c.orig Sun Jun 11 04:50:31 2006 ++++ capplets/about-me/gnome-about-me-password.c Tue Jun 13 00:02:27 2006 +@@ -52,6 +52,12 @@ + #include <signal.h> + #endif + ++#if __FreeBSD__ ++#include <sys/types.h> ++#include <libutil.h> ++#include <signal.h> ++#endif ++ + #include "capplet-util.h" + #include "eel-alert-dialog.h" + diff --git a/sysutils/gnome-control-center/files/patch-capplets_common_gnome-theme-info.c b/sysutils/gnome-control-center/files/patch-capplets_common_gnome-theme-info.c new file mode 100644 index 000000000..c9b378544 --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-capplets_common_gnome-theme-info.c @@ -0,0 +1,11 @@ +--- capplets/common/gnome-theme-info.c.orig 2009-05-03 20:30:56.000000000 +0200 ++++ capplets/common/gnome-theme-info.c 2009-07-19 12:54:25.000000000 +0200 +@@ -1876,7 +1876,7 @@ gnome_theme_init () + #ifdef XCURSOR_ICONDIR + /* if there's a separate xcursors dir, add that as well */ + if (strcmp (XCURSOR_ICONDIR, top_theme_dir_string) && +- strcmp (XCURSOR_ICONDIR, "/usr/share/icons")) { ++ strcmp (XCURSOR_ICONDIR, "%%LOCALBASE%%/lib/X11/icons")) { + top_theme_dir = g_file_new_for_path (XCURSOR_ICONDIR); + add_top_icon_theme_dir_monitor (top_theme_dir, 1, NULL); + g_object_unref (top_theme_dir); diff --git a/sysutils/gnome-control-center/files/patch-configure b/sysutils/gnome-control-center/files/patch-configure new file mode 100644 index 000000000..6527e6758 --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-configure @@ -0,0 +1,10 @@ +--- configure.orig Tue Feb 13 07:51:47 2007 ++++ configure Tue Feb 13 07:51:47 2007 +@@ -22302,6 +22302,7 @@ + if test "${gt_cv_func_ngettext_libc+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else ++ LIBS="-lintl $LIBS" + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF diff --git a/sysutils/gnome-control-center/files/patch-libslab_directory-tile.c b/sysutils/gnome-control-center/files/patch-libslab_directory-tile.c new file mode 100644 index 000000000..86acdbe0c --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-libslab_directory-tile.c @@ -0,0 +1,9 @@ +--- libslab/directory-tile.c.orig Mon Mar 12 16:33:35 2007 ++++ libslab/directory-tile.c Mon Mar 12 16:35:48 2007 +@@ -644,5 +644,5 @@ static void + disown_spawned_child (gpointer user_data) + { + setsid (); +- setpgrp (); ++ setpgrp (0, 0); + } |