File frogatto-fix-makefile.patch of Package frogatto
diff -Nur frogatto-1.3.1-orig/Makefile frogatto-1.3.1/Makefile --- frogatto-1.3.1-orig/Makefile 2012-12-08 23:36:13.000000000 +0100 +++ frogatto-1.3.1/Makefile 2023-02-03 20:47:54.361706759 +0100 @@ -34,13 +34,13 @@ endif # Initial compiler options, used before CXXFLAGS and CPPFLAGS. -BASE_CXXFLAGS += -g -fno-inline-functions -fthreadsafe-statics -Wnon-virtual-dtor -Werror -Wignored-qualifiers -Wformat -Wswitch +BASE_CXXFLAGS += -g -fno-inline-functions -fthreadsafe-statics -Wnon-virtual-dtor -Wignored-qualifiers -Wformat -Wswitch -Wno-narrowing # Compiler include options, used after CXXFLAGS and CPPFLAGS. INC := $(shell pkg-config --cflags x11 sdl glu glew SDL_image libpng zlib) # Linker library options. -LIBS := $(shell pkg-config --libs x11 ) -lSDLmain \ +LIBS := $(shell pkg-config --libs x11 ) \ $(shell pkg-config --libs sdl glu glew SDL_image libpng zlib) -lSDL_ttf -lSDL_mixer include Makefile.common @@ -60,7 +60,7 @@ $(CCACHE) $(CXX) \ $(BASE_CXXFLAGS) $(LDFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(INC) \ $(objects) -o game \ - $(LIBS) -lboost_regex-mt -lboost_system-mt -lpthread -fthreadsafe-statics + $(LIBS) -lboost_regex -lboost_system -lpthread -fthreadsafe-statics # pull in dependency info for *existing* .o files -include $(objects:.o=.d) @@ -69,7 +69,7 @@ $(CCACHE) $(CXX) \ $(BASE_CXXFLAGS) $(LDFLAGS) $(CXXFLAGS) $(CPPFLAGS) \ $(server_objects) -o server \ - $(LIBS) -lboost_regex-mt -lboost_system-mt -lboost_thread-mt -lboost_iostreams-mt + $(LIBS) -lboost_regex -lboost_system -lboost_thread -lboost_iostreams -lpthread clean: rm -f *.o *.d game