diff options
author | B. Watson <yalhcru@gmail.com> | 2021-09-26 02:13:19 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-10-13 00:52:26 +0700 |
commit | 26805cd31402dfc05575cd2cd11893f85b7a14be (patch) | |
tree | 72c3e97e3a95bab43ca1a5477047e7ce9d5cb798 /network/uget/uget.SlackBuild | |
parent | 225db693b2150536f153c5bf2c84fef03a3ad53b (diff) |
network/uget: Fix build on -current.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/uget/uget.SlackBuild')
-rw-r--r-- | network/uget/uget.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/network/uget/uget.SlackBuild b/network/uget/uget.SlackBuild index 93686df1675ba..b0ef1e1cc125e 100644 --- a/network/uget/uget.SlackBuild +++ b/network/uget/uget.SlackBuild @@ -6,6 +6,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20210926 bkw: BUILD=2, fix build on -current/15.0 # 20200223 bkw: update for 2.2.3_1 # 20191130 bkw: update for 2.2.2 # 20180612 bkw: update for 2.2.1 @@ -39,7 +40,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=uget VERSION=${VERSION:-2.2.3_1} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -58,9 +59,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -102,6 +100,8 @@ GSTREAMER="${GSTREAMER:-yes}" [ "$LIBNOTIFY" = "no" ] && NOTIFYFLAG="--disable-notify" [ "$GSTREAMER" = "no" ] && GSTFLAG="--disable-gstreamer" +SLKCFLAGS+=" -fcommon" + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |