macopix: add -fcommon workaround

Workaround build failure on -fno-common toolchains like upstream
gcc-10. Otherwise build fails as:

ld: dnd.o:src/main.h:136: multiple definition of
`MENU_EXT'; main.o:src/main.h:136: first defined here

+5
+5
pkgs/games/macopix/default.nix
··· 19 20 enableParallelBuilding = true; 21 22 NIX_LDFLAGS = "-lX11"; 23 24 meta = {
··· 19 20 enableParallelBuilding = true; 21 22 + # Workaround build failure on -fno-common toolchains: 23 + # ld: dnd.o:src/main.h:136: multiple definition of 24 + # `MENU_EXT'; main.o:src/main.h:136: first defined here 25 + NIX_CFLAGS_COMPILE = "-fcommon"; 26 + 27 NIX_LDFLAGS = "-lX11"; 28 29 meta = {