Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 257922 Details for
Bug 318365
systemd - Replacement for sysvinit with extensive usage of parallelization
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Merged upstream patch for supporting old version of libnotify
003-also_support_libnotify_lt_0.7_for_now.patch (text/plain), 2.48 KB, created by
cee1
on 2010-12-24 04:27:16 UTC
(
hide
)
Description:
Merged upstream patch for supporting old version of libnotify
Filename:
MIME Type:
Creator:
cee1
Created:
2010-12-24 04:27:16 UTC
Size:
2.48 KB
patch
obsolete
>diff --git a/Makefile.am b/Makefile.am >index 471954b..baf8271 100644 >--- a/Makefile.am >+++ b/Makefile.am >@@ -962,7 +962,12 @@ systemd_gnome_ask_password_agent_VALAFLAGS = \ > --pkg=gtk+-2.0 \ > --pkg=linux \ > --pkg=gio-unix-2.0 \ >- --pkg=libnotify \ >+ --pkg=libnotify >+if LIBNOTIFY07 >+systemd_gnome_ask_password_agent_VALAFLAGS += \ >+ -D LIBNOTIFY07 >+endif >+systemd_gnome_ask_password_agent_VALAFLAGS += \ > -g > > systemd_gnome_ask_password_agent_LDADD = \ >diff --git a/configure.ac b/configure.ac >index 5a6f3c7..dfbce11 100644 >--- a/configure.ac >+++ b/configure.ac >@@ -259,12 +259,15 @@ if test "$have_gtk" = "yes"; then > AC_SUBST(DBUSGLIB_CFLAGS) > AC_SUBST(DBUSGLIB_LIBS) > >- PKG_CHECK_MODULES(LIBNOTIFY, [ libnotify >= 0.7.0 ]) >+ PKG_CHECK_MODULES(LIBNOTIFY, [ libnotify ]) >+ PKG_CHECK_EXISTS([ libnotify >= 0.7.0 ], [ libnotify07=yes ]) >+ > AC_SUBST(LIBNOTIFY_CFLAGS) > AC_SUBST(LIBNOTIFY_LIBS) > fi >+AM_CONDITIONAL(LIBNOTIFY07, [ test "$libnotify07" = "yes" ]) > >-AM_PROG_VALAC([0.11]) >+AM_PROG_VALAC([0.10]) > AC_SUBST(VAPIDIR) > AM_CONDITIONAL(HAVE_VALAC, test x"$VALAC" != x) > >diff --git a/src/gnome-ask-password-agent.vala b/src/gnome-ask-password-agent.vala >index 6cab6f9..61bbba0 100644 >--- a/src/gnome-ask-password-agent.vala >+++ b/src/gnome-ask-password-agent.vala >@@ -38,8 +38,13 @@ public class PasswordDialog : Dialog { > set_default_response(ResponseType.OK); > set_icon_name(icon); > >+#if LIBNOTIFY07 > add_button(Stock.CANCEL, ResponseType.CANCEL); > add_button(Stock.OK, ResponseType.OK); >+#else >+ add_button(STOCK_CANCEL, ResponseType.CANCEL); >+ add_button(STOCK_OK, ResponseType.OK); >+#endif > > Container content = (Container) get_content_area(); > >@@ -181,7 +186,12 @@ public class MyStatusIcon : StatusIcon { > > set_visible(true); > >+#if LIBNOTIFY07 > Notification n = new Notification(title, message, icon); >+#else >+ Notification n = new Notification(title, message, icon, null); >+ n.attach_to_status_icon(this); >+#endif > n.set_timeout(5000); > n.show(); > >@@ -225,7 +235,11 @@ public class MyStatusIcon : StatusIcon { > > OutputStream stream = new UnixOutputStream(to_process, true); > >+#if LIBNOTIFY07 > stream.write(password.data, null); >+#else >+ stream.write(password, password.length, null); >+#endif > } > } >
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 318365
:
230771
|
230773
|
230777
|
230779
|
230887
|
230889
|
231157
|
231305
|
238431
|
241097
|
241099
|
244953
|
244955
|
244957
|
244959
|
256198
|
256199
|
256201
|
256202
|
256203
|
256205
|
256209
|
256319
|
256349
|
256351
|
256352
|
256435
|
256437
|
256439
|
256446
|
256698
|
257917
| 257922 |
270185
|
270187
|
270189
|
270191
|
271583
|
277115
|
277117
|
306293
|
306295
|
306297
|
306299
|
306339
|
306341
|
306343
|
306345