Ensure that there is only one variable definition per each object, as
the C (and C++) standards mandated for years and compilers started to enforce as of recently (Clang 11, GCC 10). Reported by: pkg-fallout
This commit is contained in:
parent
75ce806e1e
commit
0299bb02ff
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=547250
11
x11-wm/oroborus/files/patch-src_hints.c
Normal file
11
x11-wm/oroborus/files/patch-src_hints.c
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/hints.c.orig 2006-01-12 15:40:43 UTC
|
||||
+++ src/hints.c
|
||||
@@ -43,7 +43,7 @@ Atom win_hints, win_state, win_client_list, win_layer,
|
||||
win_workspace_count, win_desktop_button_proxy, win_supporting_wm_check,
|
||||
gnome_panel_desktop_area;
|
||||
Atom net_atoms[NET_ATOM_COUNT];
|
||||
-Display *dpy;
|
||||
+extern Display *dpy;
|
||||
|
||||
void
|
||||
initHints (Display * d)
|
11
x11-wm/oroborus/files/patch-src_keyboard.c
Normal file
11
x11-wm/oroborus/files/patch-src_keyboard.c
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/keyboard.c.orig 2006-01-12 15:40:43 UTC
|
||||
+++ src/keyboard.c
|
||||
@@ -35,6 +35,8 @@
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
+int NumLockMask, CapsLockMask, ScrollLockMask;
|
||||
+
|
||||
void
|
||||
parseKeyString (Display * dpy, MyKey * key, char *str)
|
||||
{
|
11
x11-wm/oroborus/files/patch-src_keyboard.h
Normal file
11
x11-wm/oroborus/files/patch-src_keyboard.h
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/keyboard.h.orig 2006-01-12 15:40:43 UTC
|
||||
+++ src/keyboard.h
|
||||
@@ -90,7 +90,7 @@ void grabKey (Display *, MyKey *, Window);
|
||||
void ungrabKeys (Display *, Window);
|
||||
void init_keyboard (Display * dpy);
|
||||
|
||||
-int NumLockMask, CapsLockMask, ScrollLockMask;
|
||||
+extern int NumLockMask, CapsLockMask, ScrollLockMask;
|
||||
|
||||
#endif /* __KEYBOARD_H */
|
||||
|
Loading…
Reference in New Issue
Block a user