Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 600612 Details for
Bug 843648
gshutdown FTBFS with recent glib
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
update glib header includes
gshutdown-0.2.glib-api.patch (text/plain), 3.39 KB, created by
Tom Lane
on 2012-07-26 21:39:48 UTC
(
hide
)
Description:
update glib header includes
Filename:
MIME Type:
Creator:
Tom Lane
Created:
2012-07-26 21:39:48 UTC
Size:
3.39 KB
patch
obsolete
>diff -Naur gshutdown-0.2.orig/src/detectwm.h gshutdown-0.2/src/detectwm.h >--- gshutdown-0.2.orig/src/detectwm.h 2007-04-14 18:33:39.000000000 -0400 >+++ gshutdown-0.2/src/detectwm.h 2012-07-26 17:31:10.897204758 -0400 >@@ -21,7 +21,7 @@ > #ifndef __GSHUTDOWN_WMDETECT__ > #define __GSHUTDOWN_WMDETECT__ > >-#include <glib/gtypes.h> >+#include <glib.h> > > gchar *detect_window_manager(); > >diff -Naur gshutdown-0.2.orig/src/main.c gshutdown-0.2/src/main.c >--- gshutdown-0.2.orig/src/main.c 2007-06-24 09:03:38.000000000 -0400 >+++ gshutdown-0.2/src/main.c 2012-07-26 17:31:28.721313304 -0400 >@@ -21,7 +21,7 @@ > #include <stdlib.h> > #include <signal.h> > #include <sys/wait.h> >-#include <glib/gutils.h> /* g_atexit() */ >+#include <glib.h> /* g_atexit() */ > #include "main.h" > #include "gui.h" > #include "misc.h" >diff -Naur gshutdown-0.2.orig/src/misc.c gshutdown-0.2/src/misc.c >--- gshutdown-0.2.orig/src/misc.c 2007-04-14 18:33:39.000000000 -0400 >+++ gshutdown-0.2/src/misc.c 2012-07-26 17:31:37.063365054 -0400 >@@ -20,12 +20,7 @@ > > #include <unistd.h> /* X_OK */ > #include <stdlib.h> >-#include <glib/gstdio.h> >-#include <glib/gstrfuncs.h> /* g_strdup_printf */ >-#include <glib/gmem.h> /* g_free */ >-#include <glib/gutils.h> /* g_getenv */ >-#include <glib/gfileutils.h> /* g_file_test() */ >-#include <glib/gshell.h> /* g_shell_parse_argv */ >+#include <glib.h> > #include "config.h" > #include "misc.h" > #include "main.h" >diff -Naur gshutdown-0.2.orig/src/misc.h gshutdown-0.2/src/misc.h >--- gshutdown-0.2.orig/src/misc.h 2007-04-14 18:33:39.000000000 -0400 >+++ gshutdown-0.2/src/misc.h 2012-07-26 17:31:14.890227639 -0400 >@@ -20,7 +20,7 @@ > #ifndef __GSHUTDOWN_MISC__ > #define __GSHUTDOWN_MISC__ > >-#include <glib/gtypes.h> /* gchar */ >+#include <glib.h> /* gchar */ > > /* Return a data file path. e.g: gshutdown.glade */ > gchar *data_path(gchar *filename); >diff -Naur gshutdown-0.2.orig/src/timer.c gshutdown-0.2/src/timer.c >--- gshutdown-0.2.orig/src/timer.c 2007-05-19 07:30:38.000000000 -0400 >+++ gshutdown-0.2/src/timer.c 2012-07-26 17:31:47.236428555 -0400 >@@ -18,7 +18,7 @@ > * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. > */ > >-#include <glib/gtypes.h> >+#include <glib.h> > #include "timer.h" > #include "values.h" > #include "gui.h" >diff -Naur gshutdown-0.2.orig/src/timer.h gshutdown-0.2/src/timer.h >--- gshutdown-0.2.orig/src/timer.h 2007-04-14 18:33:39.000000000 -0400 >+++ gshutdown-0.2/src/timer.h 2012-07-26 17:31:19.380254673 -0400 >@@ -21,7 +21,7 @@ > #ifndef __GSHUTDOWN_TIMER__ > #define __GSHUTDOWN_TIMER__ > >-#include <glib/gtypes.h> >+#include <glib.h> > > guint time_left(); > gboolean timer_notify(); >diff -Naur gshutdown-0.2.orig/src/values.c gshutdown-0.2/src/values.c >--- gshutdown-0.2.orig/src/values.c 2007-04-14 18:33:40.000000000 -0400 >+++ gshutdown-0.2/src/values.c 2012-07-26 17:31:53.540468680 -0400 >@@ -20,8 +20,7 @@ > > #include <stdio.h> > #include <string.h> >-#include <glib/gkeyfile.h> >-#include <glib/gfileutils.h> /* g_build_path */ >+#include <glib.h> > #include "values.h" > #include "gui.h" > #include "detectwm.h" >diff -Naur gshutdown-0.2.orig/src/values.h gshutdown-0.2/src/values.h >--- gshutdown-0.2.orig/src/values.h 2007-05-19 07:42:54.000000000 -0400 >+++ gshutdown-0.2/src/values.h 2012-07-26 17:31:23.534280881 -0400 >@@ -21,7 +21,7 @@ > #ifndef __GSHUTDOWN_VALUES__ > #define __GSHUTDOWN_VALUES__ > >-#include <glib/gtypes.h> >+#include <glib.h> > #include "action.h" > > typedef enum {
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 843648
: 600612