[SCM] Simple and fast multimedia library for C++ branch, master, updated. b1653be4caee03d121af6e5b0c4555adde5e9643

Christoph Egger Christoph.Egger at gmx.de
Sat May 24 13:14:32 UTC 2008


The following commit has been merged in the master branch:
commit f2122f3aaacd987dae4a3d083940f22227902028
Author: Christoph Egger <Christoph.Egger at gmx.de>
Date:   Sat May 24 14:47:23 2008 +0200

     * Fixed build of stb_vorbis
     * fixed useless -lvorbisfile

diff --git a/debian/control b/debian/control
index 877681b..49f46b4 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
 Uploaders: Christoph Egger <Christoph.Egger at gmx.de>
 Vcs-Git: git://git.debian.org/git/pkg-games/libsfml/
 Vcs-Browser: http://git.debian.org/?p=pkg-games/libsfml.git;a=log
-Build-Depends: debhelper (>= 5), libgl1-mesa-glx, mesa-common-dev, libglu1-mesa-dev, libxrandr-dev, libfreetype6-dev, libopenal-dev, libsndfile1-dev, zlib1g-dev, libjpeg62-dev, libpng12-dev, libglew1.5-dev, quilt, libvorbis-dev
+Build-Depends: debhelper (>= 5), libgl1-mesa-glx, mesa-common-dev, libglu1-mesa-dev, libxrandr-dev, libfreetype6-dev, libopenal-dev, libsndfile1-dev, zlib1g-dev, libjpeg62-dev, libpng12-dev, libglew1.5-dev, quilt
 Standards-Version: 3.7.3
 
 Package: libsfml1-dev
diff --git a/src/SFML/Audio/Makefile b/src/SFML/Audio/Makefile
index 8e136d7..cd42686 100755
--- a/src/SFML/Audio/Makefile
+++ b/src/SFML/Audio/Makefile
@@ -1,13 +1,13 @@
 LIB       = libsfml-audio.so
 SRC       = $(wildcard *.cpp)
-#SRCVORBIS = $(wildcard ./stb_vorbis/*.c)
+SRCVORBIS = $(wildcard ./stb_vorbis/*.c)
 OBJ       = $(SRC:.cpp=.o)
-#OBJVORBIS = $(SRCVORBIS:.c=.o)
+OBJVORBIS = $(SRCVORBIS:.c=.o)
 
 all: $(LIB)
 
 libsfml-audio.so: $(OBJ) $(OBJVORBIS)
-	$(CPP) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBPATH)/$@.$(VERSION) $(OBJ) -lvorbisfile -lsndfile -lopenal
+	$(CPP) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBPATH)/$@.$(VERSION) $(OBJ) $(OBJVORBIS) -lsndfile -lopenal
 
 $(OBJ): %.o: %.cpp
 	$(CPP) -o $@ -c $< $(CFLAGS)

-- 
Simple and fast multimedia library for C++



More information about the Pkg-games-commits mailing list