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:
Alexey Dokuchaev 2020-09-01 09:08:27 +00:00
parent 75ce806e1e
commit 0299bb02ff
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=547250
3 changed files with 33 additions and 0 deletions

View 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)

View 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)
{

View 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 */