mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-31 01:10:08 +00:00
xfce4-mount-plugin: update 0.6.4 -> 1.1.2
I've given my best to port musl-patch but did not test build with musl. Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
This commit is contained in:
committed by
Martin Jansa
parent
8d4a4455c8
commit
f193ec03d5
+26
-24
@@ -10,16 +10,19 @@ plugin
|
|||||||
Makes it compile/build with musl
|
Makes it compile/build with musl
|
||||||
|
|
||||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
|
||||||
|
Patch Reworked for xfce4-mount-plugin 0.6.4->1.1.2
|
||||||
|
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
|
||||||
---
|
---
|
||||||
configure.ac | 1 +
|
configure.ac | 1 +
|
||||||
panel-plugin/devices.c | 22 ++++++++++++++++++----
|
panel-plugin/devices.c | 22 +++++++++++++++++++---
|
||||||
2 files changed, 19 insertions(+), 4 deletions(-)
|
2 files changed, 20 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
diff --git a/configure.ac b/configure.ac
|
diff --git a/configure.ac b/configure.ac
|
||||||
index 34d6f7f..52ecc4a 100644
|
index b131117..c633fef 100644
|
||||||
--- a/configure.ac
|
--- a/configure.ac
|
||||||
+++ b/configure.ac
|
+++ b/configure.ac
|
||||||
@@ -67,6 +67,7 @@ AC_CHECK_HEADERS([sys/socket.h])
|
@@ -69,6 +69,7 @@ AC_CHECK_HEADERS([sys/socket.h])
|
||||||
AC_CHECK_HEADERS([sys/time.h])
|
AC_CHECK_HEADERS([sys/time.h])
|
||||||
AC_CHECK_HEADERS([unistd.h])
|
AC_CHECK_HEADERS([unistd.h])
|
||||||
AC_CHECK_HEADERS([sys/sockio.h])
|
AC_CHECK_HEADERS([sys/sockio.h])
|
||||||
@@ -28,10 +31,10 @@ index 34d6f7f..52ecc4a 100644
|
|||||||
AC_PROG_GCC_TRADITIONAL
|
AC_PROG_GCC_TRADITIONAL
|
||||||
AC_TYPE_SIZE_T
|
AC_TYPE_SIZE_T
|
||||||
diff --git a/panel-plugin/devices.c b/panel-plugin/devices.c
|
diff --git a/panel-plugin/devices.c b/panel-plugin/devices.c
|
||||||
index afa954e..345b603 100644
|
index 797b079..d29df56 100644
|
||||||
--- a/panel-plugin/devices.c
|
--- a/panel-plugin/devices.c
|
||||||
+++ b/panel-plugin/devices.c
|
+++ b/panel-plugin/devices.c
|
||||||
@@ -24,8 +24,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
@@ -24,8 +24,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#endif
|
#endif
|
||||||
@@ -39,41 +42,40 @@ index afa954e..345b603 100644
|
|||||||
+#if HAVE_FSTAB_H
|
+#if HAVE_FSTAB_H
|
||||||
#include <fstab.h>
|
#include <fstab.h>
|
||||||
+#endif
|
+#endif
|
||||||
|
+
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
@@ -370,14 +371,15 @@ out:
|
@@ -468,11 +470,12 @@ disks_new (gboolean include_NFSs, gboolean *showed_fstab_dialog, gint length)
|
||||||
GPtrArray *
|
|
||||||
disks_new (gboolean include_NFSs, gboolean *showed_fstab_dialog, gint length)
|
|
||||||
{
|
{
|
||||||
- GPtrArray * pdisks; /* to be returned */
|
GPtrArray * pdisks; /* to be returned */
|
||||||
+ GtkWidget *dialog;
|
|
||||||
t_disk * pdisk;
|
t_disk * pdisk;
|
||||||
- struct fstab *pfstab;
|
- struct fstab *pfstab;
|
||||||
+ GPtrArray * pdisks; /* to be returned */
|
|
||||||
gboolean has_valid_mount_device;
|
gboolean has_valid_mount_device;
|
||||||
- GtkWidget *dialog;
|
|
||||||
|
|
||||||
pdisks = g_ptr_array_new();
|
pdisks = g_ptr_array_new();
|
||||||
+#if HAVE_FSTAB_H
|
|
||||||
|
|
||||||
|
+#if HAVE_FSTAB_H
|
||||||
+ struct fstab *pfstab;
|
+ struct fstab *pfstab;
|
||||||
/* open fstab */
|
/* open fstab */
|
||||||
if (setfsent()!=1)
|
if (setfsent()!=1)
|
||||||
{
|
{
|
||||||
@@ -422,6 +424,18 @@ disks_new (gboolean include_NFSs, gboolean *showed_fstab_dialog, gint length)
|
@@ -526,7 +529,20 @@ disks_new (gboolean include_NFSs, gboolean *showed_fstab_dialog, gint length)
|
||||||
|
} /* end for */
|
||||||
|
|
||||||
endfsent(); /* close file */
|
endfsent(); /* close file */
|
||||||
|
-
|
||||||
+#else
|
+#else
|
||||||
|
+ /* popup notification dialog */
|
||||||
+ if (! (*showed_fstab_dialog) ) {
|
+ if (! (*showed_fstab_dialog) ) {
|
||||||
+ dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_DESTROY_WITH_PARENT,
|
+ xfce_message_dialog (NULL,
|
||||||
+ GTK_MESSAGE_INFO, GTK_BUTTONS_OK,
|
+ _("Xfce 4 Mount Plugin"),
|
||||||
+ "Your /etc/fstab could not be read because fstab is not supported. This will severely degrade the plugin's abilities.");
|
+ "dialog-info",
|
||||||
+ /* gtk_dialog_run (GTK_DIALOG (dialog)); */
|
+ _("Your /etc/fstab could not be read because fstab is not supported. This will severely degrade the plugin's abilities."),
|
||||||
+ g_signal_connect (dialog, "response",
|
+ NULL,
|
||||||
+ G_CALLBACK (gtk_widget_destroy), dialog);
|
+ "gtk-ok",
|
||||||
+ gtk_widget_show (dialog);
|
+ GTK_RESPONSE_OK,
|
||||||
|
+ NULL);
|
||||||
+ *showed_fstab_dialog = TRUE;
|
+ *showed_fstab_dialog = TRUE;
|
||||||
+ }
|
+ }
|
||||||
+#endif
|
+#endif
|
||||||
@@ -81,5 +83,5 @@ index afa954e..345b603 100644
|
|||||||
}
|
}
|
||||||
|
|
||||||
--
|
--
|
||||||
2.12.0
|
2.9.3
|
||||||
|
|
||||||
|
|||||||
+3
-4
@@ -6,7 +6,6 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|||||||
|
|
||||||
inherit xfce-panel-plugin
|
inherit xfce-panel-plugin
|
||||||
|
|
||||||
SRC_URI += "file://0001-check-for-fstab.h-during-configure.patch \
|
SRC_URI += "file://0001-check-for-fstab.h-during-configure.patch"
|
||||||
"
|
SRC_URI[md5sum] = "7eba9696d82433a5577741214d34b588"
|
||||||
SRC_URI[md5sum] = "f5917e9aa2a06bc6a872cc10d2ee4f6f"
|
SRC_URI[sha256sum] = "54578447abaf9da630a750d64acdc37d4fd20dda6460208d6d1ffaa9e43ee1a6"
|
||||||
SRC_URI[sha256sum] = "541d7af84d7d0b00ae547aa1f438e2fac51ee4195c4d0a17173c4f72accb227d"
|
|
||||||
Reference in New Issue
Block a user