system/krusader: Added a patch for gcc.

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
Bill Kirkpatrick 2012-09-10 12:11:41 +02:00 committed by Robby Workman
parent ae0f620353
commit 8e3960c6a5
2 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,20 @@
--- a/krusader/UserAction/tstring.h
+++ b/krusader/UserAction/tstring.h
@@ -125,7 +125,7 @@ TagString_t<T>& TagString_t<T>::operator
str += s.str;
const unsigned disp = length();
for (typename taglist::const_iterator it = s.tags.begin(), end = s.tags.end();it != end;++it) {
- tags.push_back(make_pair((*it).first + disp, (*it).second));
+ tags.push_back(std::make_pair((*it).first + disp, (*it).second));
}
return *this;
}
@@ -134,7 +134,7 @@ template <class T>
void TagString_t<T>::insertTag(uint pos, const T& t)
{
assert(pos <= length());
- tags.push_back(make_pair(pos, t));
+ tags.push_back(std::make_pair(pos, t));
}
#endif

View File

@ -25,7 +25,7 @@
PRGNAM=krusader
VERSION=${VERSION:-2.3.0_beta1}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
SRCVER="$(printf $VERSION | tr _ -)"
@ -77,6 +77,8 @@ find . \
# add xz archive support
# https://bugs.kde.org/show_bug.cgi?id=254615
patch -p1 -i $CWD/krusader-xz.patch
# add gcc-4.7 patch
patch -p1 -i $CWD/krusader-2.4.0_beta1-gcc47.patch
mkdir -p build
cd build