commit: a00413d84ff972c0c39fce670098b8c85b99441a Author: Chris Reffett <creffett <AT> gentoo <DOT> org> AuthorDate: Sun Jan 3 01:08:06 2016 +0000 Commit: Chris Reffett <creffett <AT> gentoo <DOT> org> CommitDate: Sun Jan 3 01:08:35 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a00413d8
games-roguelike/dwarf-fortress: Fix running with GCC 5 Gentoo-Bug: 570292 Package-Manager: portage-2.2.26 games-roguelike/dwarf-fortress/files/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games-roguelike/dwarf-fortress/files/Makefile b/games-roguelike/dwarf-fortress/files/Makefile index a0453a5..66e6401 100644 --- a/games-roguelike/dwarf-fortress/files/Makefile +++ b/games-roguelike/dwarf-fortress/files/Makefile @@ -17,7 +17,7 @@ OBJS := $(SRCS:.cpp=.o) BLIBS := ncursesw openal sndfile LIBS := glew glu gtk+-2.0 sdl SDL_image SDL_ttf zlib CXXFLAGS ?= -O2 -pipe -Wall -Wextra -CXXFLAGS += -m32 $(shell $(PKG_CONFIG) --cflags $(BLIBS) $(LIBS)) -Dunix -Dlinux -fPIC -std=c++11 +CXXFLAGS += -m32 $(shell $(PKG_CONFIG) --cflags $(BLIBS) $(LIBS)) -Dunix -Dlinux -fPIC -std=c++11 -D_GLIBCXX_USE_CXX11_ABI=0 LDLIBS := $(shell $(PKG_CONFIG) --libs $(LIBS)) LG := libs/libgraphics.so
