diff options
Diffstat (limited to 'devel/sfml/files/patch-src-SFML-Audio-Makefile')
-rw-r--r-- | devel/sfml/files/patch-src-SFML-Audio-Makefile | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/devel/sfml/files/patch-src-SFML-Audio-Makefile b/devel/sfml/files/patch-src-SFML-Audio-Makefile index f582c5fdcb51..7b5aa5389369 100644 --- a/devel/sfml/files/patch-src-SFML-Audio-Makefile +++ b/devel/sfml/files/patch-src-SFML-Audio-Makefile @@ -1,19 +1,19 @@ ---- src/SFML/Audio/Makefile.orig 2009-05-28 19:57:04.000000000 +0400 -+++ src/SFML/Audio/Makefile 2009-07-07 19:51:57.000000000 +0400 +--- src/SFML/Audio/Makefile.orig 2010-01-27 15:00:19.000000000 +0100 ++++ src/SFML/Audio/Makefile 2013-02-14 09:39:53.000000000 +0100 @@ -19,13 +19,13 @@ - $(AR) $(ARFLAGS) $(LIBNAME) $(OBJ) $(OBJVORBIS)
-
- libsfml-audio.so: $(OBJ) $(OBJVORBIS)
-- $(CPP) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBNAME) $(OBJ) $(OBJVORBIS) -lsndfile -lopenal
-+ $(CXX) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBNAME) $(OBJ) $(OBJVORBIS) -lsndfile -lopenal
-
- $(OBJ): %.o: %.cpp
-- $(CPP) -o $@ -c $< $(CFLAGS)
-+ $(CXX) -o $@ -c $< $(CXXFLAGS)
-
- $(OBJVORBIS): %.o: %.c
-- $(CC) -o $@ -c $< $(CFLAGSEXT)
-+ $(CC) -o $@ -c $< $(CFLAGS)
-
- .PHONY: clean mrproper
-
+ $(AR) $(ARFLAGS) $(LIBNAME) $(OBJ) $(OBJVORBIS) + + libsfml-audio.so: $(OBJ) $(OBJVORBIS) +- $(CPP) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBNAME) $(OBJ) $(OBJVORBIS) -lsndfile -lopenal ++ $(CXX) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBNAME) $(OBJ) $(OBJVORBIS) -lsndfile -lopenal + + $(OBJ): %.o: %.cpp +- $(CPP) -o $@ -c $< $(CFLAGS) ++ $(CXX) -o $@ -c $< $(CXXFLAGS) + + $(OBJVORBIS): %.o: %.c +- $(CC) -o $@ -c $< $(CFLAGSEXT) ++ $(CC) -o $@ -c $< $(CFLAGS) + + .PHONY: clean mrproper + |