mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
graphics/hugin: gzip patch.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
2b25e7479c
commit
ee170444a2
3 changed files with 2 additions and 18 deletions
|
@ -1,16 +0,0 @@
|
|||
--- src/hugin_base/hugin_utils/filesystem.h.old 2023-05-08 20:19:14.000000000 +0200
|
||||
+++ src/hugin_base/hugin_utils/filesystem.h 2024-04-21 10:00:22.770138350 +0200
|
||||
@@ -64,6 +64,12 @@
|
||||
#endif
|
||||
#include <boost/filesystem.hpp>
|
||||
namespace fs = boost::filesystem;
|
||||
- #define OVERWRITE_EXISTING boost::filesystem::copy_option::overwrite_if_exists
|
||||
+ #if BOOST_VERSION>=107400
|
||||
+ // in Boost 1.74 and later filesystem::copy_option is deprecated
|
||||
+ // use filesystem::copy_options instead
|
||||
+ #define OVERWRITE_EXISTING boost::filesystem::copy_options::overwrite_existing
|
||||
+ #else
|
||||
+ #define OVERWRITE_EXISTING boost::filesystem::copy_option::overwrite_if_exists
|
||||
+ #endif
|
||||
#endif
|
||||
#endif // _HUGIN_UTILS_FILESYSTEM_H
|
BIN
graphics/hugin/boost-1.85.0-patch.gz
Normal file
BIN
graphics/hugin/boost-1.85.0-patch.gz
Normal file
Binary file not shown.
|
@ -35,7 +35,7 @@ cd $(dirname $0) ; CWD=$(pwd)
|
|||
|
||||
PRGNAM=hugin
|
||||
VERSION=${VERSION:-2023.0.0}
|
||||
BUILD=${BUILD:-2}
|
||||
BUILD=${BUILD:-3}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
||||
|
@ -79,7 +79,7 @@ rm -rf $PRGNAM-$VERSION
|
|||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||
cd $PRGNAM-$VERSION
|
||||
|
||||
patch -p0 <$CWD/boost-1.85.0-patch
|
||||
zcat $CWD/boost-1.85.0-patch | patch -p0
|
||||
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
|
|
Loading…
Reference in a new issue