- add patch gkrellm-install-and-reconnect-gkrellmd.conf.patch in order to install /etc/gkrellmd.conf properly and make reconnect default - refresh patches - separate gkrellmd package OBS-URL: https://build.opensuse.org/request/show/651139 OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/gkrellm?expand=0&rev=8
30 lines
728 B
Diff
30 lines
728 B
Diff
Index: b/src/gkrellm.h
|
|
===================================================================
|
|
--- a/src/gkrellm.h
|
|
+++ b/src/gkrellm.h
|
|
@@ -142,6 +142,9 @@
|
|
#if !defined(SYSTEM_PLUGINS_DIR)
|
|
#define SYSTEM_PLUGINS_DIR "/usr/lib/gkrellm2/plugins"
|
|
#endif
|
|
+#if !defined(SYSTEM64_PLUGINS_DIR)
|
|
+#define SYSTEM64_PLUGINS_DIR "/usr/lib64/gkrellm2/plugins"
|
|
+#endif
|
|
|
|
#else
|
|
|
|
Index: b/src/plugins.c
|
|
===================================================================
|
|
--- a/src/plugins.c
|
|
+++ b/src/plugins.c
|
|
@@ -1283,6 +1283,10 @@ gkrellm_plugins_load(void)
|
|
#if defined(SYSTEM_PLUGINS_DIR)
|
|
scan_for_plugins(SYSTEM_PLUGINS_DIR);
|
|
#endif
|
|
+
|
|
+#if defined(SYSTEM64_PLUGINS_DIR)
|
|
+ scan_for_plugins(SYSTEM64_PLUGINS_DIR);
|
|
+#endif
|
|
}
|
|
|
|
#if 0
|