Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
00c1cf11
Commit
00c1cf11
authored
3 months ago
by
Natanael Copa
Browse files
Options
Downloads
Patches
Plain Diff
community/blind: fix build with gcc14 on 32 bit
parent
fdbf92af
No related branches found
No related tags found
1 merge request
!75609
community/blind: fix build with gcc14 on 32 bit
Pipeline
#274430
skipped
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
community/blind/APKBUILD
+7
-3
7 additions, 3 deletions
community/blind/APKBUILD
community/blind/fix-tozu.patch
+17
-0
17 additions, 0 deletions
community/blind/fix-tozu.patch
with
24 additions
and
3 deletions
community/blind/APKBUILD
+
7
−
3
View file @
00c1cf11
...
...
@@ -2,7 +2,7 @@
# Maintainer: Jean-Louis Fuchs <jean-louis.fuchs@adfinis-sygroup.ch>
pkgname
=
blind
pkgver
=
1.1
pkgrel
=
4
pkgrel
=
5
pkgdesc
=
"blind is a collection of command line video editing utilities"
url
=
"https://tools.suckless.org/blind/"
arch
=
"all"
...
...
@@ -11,6 +11,7 @@ checkdepends="ffmpeg"
subpackages
=
"
$pkgname
-doc"
source
=
"https://dl.suckless.org/tools/blind-
$pkgver
.tar.gz
fix-readall.patch
fix-tozu.patch
test.ff.bz2
"
...
...
@@ -32,6 +33,9 @@ package() {
cp
blind-rotate-
*
"
$pkgdir
/usr/bin/"
}
sha512sums
=
"620a5edc69bf736f642948e4f6ac6dda8cdbea4bdad143b09f931e62aaa57983e23ff60961d1485dcbce1ac461be12b393fe03f056ef46ca5ad2012cb03cf637 blind-1.1.tar.gz
sha512sums
=
"
620a5edc69bf736f642948e4f6ac6dda8cdbea4bdad143b09f931e62aaa57983e23ff60961d1485dcbce1ac461be12b393fe03f056ef46ca5ad2012cb03cf637 blind-1.1.tar.gz
cc5ef6e5d84202a4194b4858177d7385674208338de5ce68918838d162ad57bc89f738484bda3bdb2e121fb75029fe74bbf460e92d0ba6b3a678883f151002f9 fix-readall.patch
0834032e1e416824883658478b8cc2821df9b41cf4f169f471df0476c35dfe4a6bcc9c103e5522e54d7f820f77710e3215c691fa39311f6be3310cb1745e2b73 test.ff.bz2"
5581d09b2fb38979b8af725309dd208b6d1f4cd033a05c1251c6b39611030bf7829052e20f4512fe84641baf03b90ab6919f0fac85d7e8c2d9161985c45363b2 fix-tozu.patch
0834032e1e416824883658478b8cc2821df9b41cf4f169f471df0476c35dfe4a6bcc9c103e5522e54d7f820f77710e3215c691fa39311f6be3310cb1745e2b73 test.ff.bz2
"
This diff is collapsed.
Click to expand it.
community/blind/fix-tozu.patch
0 → 100644
+
17
−
0
View file @
00c1cf11
diff --git a/src/util/to.h b/src/util/to.h
index c927d57..e3a4943 100644
--- a/src/util/to.h
+++ b/src/util/to.h
@@ -15,11 +15,11 @@
int tolli(const char *s, long long int min, long long int max, long long int *ou
return 0;\
}
DEF_STR_TO_INT(tolu, unsigned long int, tollu, unsigned long long int, "lu")
+DEF_STR_TO_INT(tozu, size_t, tollu, unsigned long long int, "zu")
DEF_STR_TO_INT(tou, unsigned int, tollu, unsigned long long int, "u")
DEF_STR_TO_INT(toli, long int, tolli, long long int, "li")
DEF_STR_TO_INT(toi, int, tolli, long long int, "i")
#undef DEF_STR_TO_INT
-#define tozu tolu
#define tozi toli
#define toju tollu
#define toji tolli
This diff is collapsed.
Click to expand it.
mio
@mio
mentioned in issue
#16335
·
3 months ago
mentioned in issue
#16335
mentioned in issue #16335
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment