diff options
author | Chris Reffett <creffett@gentoo.org> | 2016-01-02 20:08:06 -0500 |
---|---|---|
committer | Chris Reffett <creffett@gentoo.org> | 2016-01-02 20:08:35 -0500 |
commit | a00413d84ff972c0c39fce670098b8c85b99441a (patch) | |
tree | f188bb9e721349b3ce81eea33aa5c625abf7bec5 /games-roguelike/dwarf-fortress | |
parent | app-emulation/xen: revbump to vn. 4.6.0-r5 (diff) | |
download | gentoo-a00413d84ff972c0c39fce670098b8c85b99441a.tar.gz gentoo-a00413d84ff972c0c39fce670098b8c85b99441a.tar.bz2 gentoo-a00413d84ff972c0c39fce670098b8c85b99441a.zip |
games-roguelike/dwarf-fortress: Fix running with GCC 5
Gentoo-Bug: 570292
Package-Manager: portage-2.2.26
Diffstat (limited to 'games-roguelike/dwarf-fortress')
-rw-r--r-- | games-roguelike/dwarf-fortress/files/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games-roguelike/dwarf-fortress/files/Makefile b/games-roguelike/dwarf-fortress/files/Makefile index a0453a50f7c4..66e6401df5bb 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 |