From cfc73e2aca4a8dd97bb9ef51ce3f84cbda22e83f Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Thu, 16 Jul 2009 14:56:33 +0000 Subject: SFML is a portable and easy to use multimedia API written in C++. You can see it as a modern, object-oriented alternative to SDL. SFML is composed of several packages to perfectly suit your needs. You can use SFML as a minimal windowing system to interface with OpenGL, or as a fully-featured multimedia library for building games or interactive programs. WWW: http://www.sfml-dev.org/index.php --- devel/sfml/files/patch-src-SFML-System-Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 devel/sfml/files/patch-src-SFML-System-Makefile (limited to 'devel/sfml/files/patch-src-SFML-System-Makefile') diff --git a/devel/sfml/files/patch-src-SFML-System-Makefile b/devel/sfml/files/patch-src-SFML-System-Makefile new file mode 100644 index 000000000000..6f05acbccc1f --- /dev/null +++ b/devel/sfml/files/patch-src-SFML-System-Makefile @@ -0,0 +1,15 @@ +--- src/SFML/System/Makefile.orig 2009-05-28 19:57:04.000000000 +0400 ++++ src/SFML/System/Makefile 2009-07-07 19:51:23.000000000 +0400 +@@ -17,10 +17,10 @@ + $(AR) $(ARFLAGS) $(LIBNAME) $(OBJ) + + libsfml-system.so: $(OBJ) +- $(CPP) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBNAME) $(OBJ) -lpthread ++ $(CXX) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBNAME) $(OBJ) ${PTHREAD_LIBS} + + $(OBJ): %.o: %.cpp +- $(CPP) -o $@ -c $< $(CFLAGS) ++ $(CXX) -o $@ -c $< $(CXXFLAGS) + + .PHONY: clean mrproper + -- cgit v1.2.3