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
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
TBK
aports
Commits
d51c3aad
Commit
d51c3aad
authored
9 years ago
by
Natanael Copa
Browse files
Options
Downloads
Patches
Plain Diff
main/talloc: upgrade to 2.1.3
parent
784ae130
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
main/talloc/APKBUILD
+7
-7
7 additions, 7 deletions
main/talloc/APKBUILD
main/talloc/fix-libreplace.patch
+0
-29
0 additions, 29 deletions
main/talloc/fix-libreplace.patch
with
7 additions
and
36 deletions
main/talloc/APKBUILD
+
7
−
7
View file @
d51c3aad
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname
=
talloc
pkgver
=
2.1.
2
pkgver
=
2.1.
3
pkgrel
=
0
pkgdesc
=
"A memory pool management library"
url
=
"http://talloc.samba.org/"
...
...
@@ -61,12 +61,12 @@ _py() {
"
$pkgdir
"
/usr/lib/python
*
"
$subpkgdir
"
/usr/lib/
}
md5sums
=
"
6bc6e6ac293e739a902dd73cdc8
8f6
64
talloc-2.1.
2
.tar.gz
md5sums
=
"
3e285de2228ae67ff0a0f5cec65
8f6
27
talloc-2.1.
3
.tar.gz
10304afbc3b00346238bf5a969227c68 always-libs.patch
b8c06c1a37bce8a7feea3b6896483da0
fix-libreplace.patch"
sha256sums
=
"
230d78a3fca75a15ab0f5d76d7bbaea
dd
3
c1
e695adcbb085932d227f5c31838d
talloc-2.1.
2
.tar.gz
f4d7a813003048db39160daa0d232b92
fix-libreplace.patch"
sha256sums
=
"
7aa5f75b22d4ef9c737b25515f2a2837
ddc1
3014ff4ac6e58dd9e311f41f2cb0
talloc-2.1.
3
.tar.gz
a0b3778ed751f9acb7a7e3cdd13d4f38762f497b35ce761359cc48d366f43318 always-libs.patch
13617f691c648b44867c1a76d8be7c185021e8a8f3b695f8689a9f6244e6582
7 fix-libreplace.patch"
sha512sums
=
"
9bb3b8a1be663b63c03ec3336de2e4941052012357dacd0f4303ebb0c4d7f84fb7425bece114fda67167624ea417f57b33dfd5a8f373178c044f8270fecd596a
talloc-2.1.
2
.tar.gz
a5575ca417fa5d13feb7c52429e1a9f618c0b8640462ba780777be5000499b8
7 fix-libreplace.patch"
sha512sums
=
"
4ec350ab5d7e53c8ae816a3d722b10cce75552f1b3d6a31cc7aae13d6c5722d39a126702c8ebb4fa2f6b7908a6501e916e341e2b660080a6c8d22f70171862f6
talloc-2.1.
3
.tar.gz
dc7ce3fa5152c2e796b184bf2f7937f3424b9f1fece580195364d416ede47e655c04f1fa3ce33cd2a27d0764039ddbaec8d72c4bf3e96f6eac2c09743bed4b8c always-libs.patch
4adbbeb75de6c55199e10f284e741ee252f403b7809251caf4baf378669770be01d469b23e12f8119ed5dca5080dd45bda1b5b78cc7a791be44c1eb6fb8c0fa2
fix-libreplace.patch"
9035bfe86b95b11e1a2cfc5a2950b72916faf721667bf813fa7fad482e815ce57cb1cd94504df0e30a0e699a0afe921e6e564d4d284dac6e446f947d63235793
fix-libreplace.patch"
This diff is collapsed.
Click to expand it.
main/talloc/fix-libreplace.patch
+
0
−
29
View file @
d51c3aad
--- talloc-2.1.0.orig/lib/replace/replace.c
+++ talloc-2.1.0/lib/replace/replace.c
@@ -508,28 +508,6 @@
# error "You need a strtoll function"
#endif
}
-#else
-#ifdef HAVE_BSD_STRTOLL
-#ifdef HAVE_STRTOQ
-long long int rep_strtoll(const char *str, char **endptr, int base)
-{
- long long int nb = strtoq(str, endptr, base);
- /* In linux EINVAL is only returned if base is not ok */
- if (errno == EINVAL) {
- if (base == 0 || (base >1 && base <37)) {
- /* Base was ok so it's because we were not
- * able to make the convertion.
- * Let's reset errno.
- */
- errno = 0;
- }
- }
- return nb;
-}
-#else
-#error "You need the strtoq function"
-#endif /* HAVE_STRTOQ */
-#endif /* HAVE_BSD_STRTOLL */
#endif /* HAVE_STRTOLL */
@@ -546,28 +524,6 @@
# error "You need a strtoull function"
#endif
...
...
This diff is collapsed.
Click to expand it.
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