multimedia/subtitlecomposer: Patched to build with gcc 4.5.

Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
dsomero 2011-04-01 22:15:08 -04:00 committed by Robby Workman
parent 1279f8e909
commit 6d70d239bc
2 changed files with 19 additions and 1 deletions

View file

@ -0,0 +1,15 @@
Fix build with GCC-4.5
http://bugs.gentoo.org/show_bug.cgi?id=323055
--- src/core/sstring.cpp
+++ src/core/sstring.cpp
@@ -1112,7 +1112,7 @@
append( str );
}
-SStringList::SStringList( const SStringList::SStringList& list ):
+SStringList::SStringList( const SStringList& list ):
QList<SString>( list )
{
}

View file

@ -6,7 +6,7 @@
PRGNAM=subtitlecomposer
VERSION=${VERSION:-0.5.3}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
@ -53,6 +53,9 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
# Patch to build with gcc 4.5.
patch -p0 < $CWD/subtitlecomposer-0.5.3-gcc45.patch
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \