15 lines
407 B
Text
15 lines
407 B
Text
Fix -fno-common build failure. Taken from
|
|
https://github.com/awesomeWM/awesome/commit/d256d9055095f27a33696e0aeda4ee20ed4fb1a0
|
|
|
|
Index: objects/key.h
|
|
--- objects/key.h.orig
|
|
+++ objects/key.h
|
|
@@ -36,7 +36,7 @@ typedef struct keyb_t
|
|
xcb_keycode_t keycode;
|
|
} keyb_t;
|
|
|
|
-lua_class_t key_class;
|
|
+extern lua_class_t key_class;
|
|
LUA_OBJECT_FUNCS(key_class, keyb_t, key)
|
|
DO_ARRAY(keyb_t *, key, DO_NOTHING)
|
|
|