diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2020-08-28 22:11:24 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2020-08-28 22:11:24 +0000 |
commit | e382c26122bd3d2ecb936c44a2d4016393491ae6 (patch) | |
tree | 69ba6c2972a072b1849c8682a6180913f34eda57 /x11 | |
parent | ba0d4aead80d182333c0bf18c0b9d440f3cd65d5 (diff) | |
download | ports-e382c26122bd3d2ecb936c44a2d4016393491ae6.tar.gz ports-e382c26122bd3d2ecb936c44a2d4016393491ae6.zip |
Notes
Diffstat (limited to 'x11')
-rw-r--r-- | x11/fbpanel/files/patch-panel_plugin.c | 10 | ||||
-rw-r--r-- | x11/fbpanel/files/patch-panel_plugin.h | 11 |
2 files changed, 21 insertions, 0 deletions
diff --git a/x11/fbpanel/files/patch-panel_plugin.c b/x11/fbpanel/files/patch-panel_plugin.c new file mode 100644 index 000000000000..6314b0668bbf --- /dev/null +++ b/x11/fbpanel/files/patch-panel_plugin.c @@ -0,0 +1,10 @@ +--- panel/plugin.c.orig 2020-08-28 22:09:44 UTC ++++ panel/plugin.c +@@ -17,6 +17,7 @@ + //#define DEBUGPRN + #include "dbg.h" + extern panel *the_panel; ++struct _plugin_instance *stam; + + + /**************************************************************/ diff --git a/x11/fbpanel/files/patch-panel_plugin.h b/x11/fbpanel/files/patch-panel_plugin.h new file mode 100644 index 000000000000..0026efaefd04 --- /dev/null +++ b/x11/fbpanel/files/patch-panel_plugin.h @@ -0,0 +1,11 @@ +--- panel/plugin.h.orig 2020-08-28 22:09:44 UTC ++++ panel/plugin.h +@@ -9,7 +9,7 @@ + #include <stdio.h> + #include "panel.h" + +-struct _plugin_instance *stam; ++extern struct _plugin_instance *stam; + + typedef struct { + /* common */ |