ports/devel/sfml1/files/patch-src-SFML-Network-Makefile
Dmitry Marakasov 3af2464b73 - Repocopy graphics/sfml to graphics/sfml1 in preparaton for update to 2.x
- Implement necessary hacks needed for graphics/sfml and graphics/sfml1 to coexist
2014-05-09 22:07:31 +00:00

15 lines
480 B
Text

--- src/SFML/Network/Makefile.orig 2009-05-28 19:57:08.000000000 +0400
+++ src/SFML/Network/Makefile 2009-07-07 20:01:13.000000000 +0400
@@ -17,10 +17,10 @@
$(AR) $(ARFLAGS) $(LIBNAME) $(OBJ)
libsfml-network.so: $(OBJ)
- $(CPP) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBNAME) $(OBJ)
+ $(CXX) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBNAME) $(OBJ)
$(OBJ): %.o: %.cpp
- $(CPP) -o $@ -c $< $(CFLAGS)
+ $(CXX) -o $@ -c $< $(CXXFLAGS)
.PHONY: clean mrproper