diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2018-02-19 01:06:29 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-02-24 06:55:49 +0700 |
commit | 2ad6c67dd6a0c656d7ca0234ee8046b8646d34d7 (patch) | |
tree | 6aafb3404226eebafe2437d368102532b07bacb7 /office/abiword/abiword.SlackBuild | |
parent | 7142f96c14b39bd8e7ee3c8689aa6272ac0a3693 (diff) | |
download | slackbuilds-2ad6c67dd6a0c656d7ca0234ee8046b8646d34d7.tar.gz |
office/abiword: fix screen flicker with gtk+3 >= 3.22.x
Thanks to pomfland for the report and patch link.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office/abiword/abiword.SlackBuild')
-rw-r--r-- | office/abiword/abiword.SlackBuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/office/abiword/abiword.SlackBuild b/office/abiword/abiword.SlackBuild index 9f52457ee6..77fdffe278 100644 --- a/office/abiword/abiword.SlackBuild +++ b/office/abiword/abiword.SlackBuild @@ -30,7 +30,7 @@ PRGNAM=abiword VERSION=${VERSION:-3.0.2} DOCSVER=$VERSION # version of abiword-docs DOCTAR=3.0.1 # sigh, the tarball contains abiword-docs-3.0.1 still -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -77,6 +77,9 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# https://bugs.archlinux.org/task/46659 +patch -p1 < $CWD/bug13815.patch + CPPFLAGS="-I$TMP/$PRGNAM-$VERSION" \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS -std=c++11" \ |