Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
aports
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
816
Issues
816
List
Boards
Labels
Milestones
Merge Requests
41
Merge Requests
41
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
aports
Commits
1db99fb6
Commit
1db99fb6
authored
May 28, 2019
by
Timo Teräs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
main/fortify-headers: upgrade to 1.1
parent
99350267
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
46 deletions
+3
-46
APKBUILD
main/fortify-headers/APKBUILD
+3
-5
use-builtins-when-possible.patch
main/fortify-headers/use-builtins-when-possible.patch
+0
-41
No files found.
main/fortify-headers/APKBUILD
View file @
1db99fb6
# Contributor: Timo Teräs <timo.teras@iki.fi>
# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname
=
fortify-headers
pkgver
=
1.
0
pkgrel
=
1
pkgver
=
1.
1
pkgrel
=
0
pkgdesc
=
"standalone fortify source implementation"
url
=
"http://git.2f30.org/fortify-headers/"
arch
=
"noarch"
options
=
"!check"
# No test suite.
license
=
"BSD-0"
source
=
"http://dl.2f30.org/releases/
$pkgname
-
$pkgver
.tar.gz
use-builtins-when-possible.patch
"
builddir
=
"
$srcdir
"
/
$pkgname
-
$pkgver
...
...
@@ -23,5 +22,4 @@ package() {
make
DESTDIR
=
"
$pkgdir
"
PREFIX
=
/usr
install
}
sha512sums
=
"085a725da9a6da0eea732ee77e3a3dc7d3c96bc3344172523db5f1e35391492910a050c15c560912115b2db916c2d6fa37e409e997c53399ee4fee912c5513e8 fortify-headers-1.0.tar.gz
b4c6f6b89745ef21c5e0ffbef99b95872ae46f700ce0c42617dcc39bfa52526f54e36794ad682f4a4fe54fa7c348bfc46f3367c20e3629dbd88869a48f45209e use-builtins-when-possible.patch"
sha512sums
=
"a39d6e7c002bf91085f712aa46bc3f53ff934cc963694a229fa82d84ff4a7556105212a84a231ab5367c01c6a1e385172173f1f4a34d5eb4d2d9c58472c23dd0 fortify-headers-1.1.tar.gz"
main/fortify-headers/use-builtins-when-possible.patch
deleted
100644 → 0
View file @
99350267
commit 5aabc7e6aad28327d75671e52c50060e4543112c
Author: sin <sin@2f30.org>
Date: Mon Feb 25 13:01:12 2019 +0000
Make use of builtins whenever possible
diff --git a/include/string.h b/include/string.h
index 43c7485..66c23e1 100644
--- a/include/string.h
+++ b/include/string.h
@@ -50,7 +50,7 @@
_FORTIFY_FN(memcpy) void *memcpy(void *__od, const void *__os, size_t __n)
__builtin_trap();
if (__n > __bd || __n > __bs)
__builtin_trap();
- return __orig_memcpy(__od, __os, __n);
+ return __builtin_memcpy(__od, __os, __n);
}
_FORTIFY_FN(memmove) void *memmove(void *__d, const void *__s, size_t __n)
@@ -69,7 +69,7 @@
_FORTIFY_FN(memset) void *memset(void *__d, int __c, size_t __n)
if (__n > __b)
__builtin_trap();
- return __orig_memset(__d, __c, __n);
+ return __builtin_memset(__d, __c, __n);
}
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
diff --git a/include/wchar.h b/include/wchar.h
index 3cb6f92..09ffa97 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -121,7 +121,7 @@
_FORTIFY_FN(wcrtomb) size_t wcrtomb(char *__s, wchar_t __w, mbstate_t *__st)
return __r;
if (__r > __b)
__builtin_trap();
- memcpy(__s, __buf, __r);
+ __builtin_memcpy(__s, __buf, __r);
return __r;
}
return __orig_wcrtomb(__s, __w, __st);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment