Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Adélie Package Tree
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Robert Samoraj
Adélie Package Tree
Commits
cd6af026
Verified
Commit
cd6af026
authored
5 years ago
by
Anna Wilcox
Browse files
Options
Downloads
Patches
Plain Diff
system/pcre: maybe even fix pmmx mariadb build?
parent
cdd7c92b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
system/pcre/APKBUILD
+7
-4
7 additions, 4 deletions
system/pcre/APKBUILD
system/pcre/stack-frame-size-detection.patch
+15
-0
15 additions, 0 deletions
system/pcre/stack-frame-size-detection.patch
with
22 additions
and
4 deletions
system/pcre/APKBUILD
+
7
−
4
View file @
cd6af026
...
...
@@ -2,16 +2,18 @@
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname
=
pcre
pkgver
=
8.43
pkgrel
=
0
pkgrel
=
1
pkgdesc
=
"Perl-compatible regular expression library"
url
=
"http://pcre.sourceforge.net"
arch
=
"all"
license
=
"BSD-3-Clause"
depends
=
depends
=
""
makedepends
=
""
subpackages
=
"
$pkgname
-dev
$pkgname
-doc
$pkgname
-tools
libpcrecpp libpcre16 libpcre32"
source
=
"ftp://ftp.csx.cam.ac.uk/pub/software/programming/
$pkgname
/
$pkgname
-
$pkgver
.tar.bz2"
source
=
"ftp://ftp.csx.cam.ac.uk/pub/software/programming/
$pkgname
/
$pkgname
-
$pkgver
.tar.bz2
stack-frame-size-detection.patch
"
# secfixes:
# 8.40-r2:
...
...
@@ -74,4 +76,5 @@ tools() {
mv
"
$pkgdir
"
/usr/bin
"
$subpkgdir
"
/usr/
}
sha512sums
=
"3b4ac2c7ccd77c9575d07a33c3456f40b50731029e62d01fb8f2f5871d7118e12bc9e6bc7a8079769c765e38da5ecf98c4b261b10ff0a2f14f0881b434f67af7 pcre-8.43.tar.bz2"
sha512sums
=
"3b4ac2c7ccd77c9575d07a33c3456f40b50731029e62d01fb8f2f5871d7118e12bc9e6bc7a8079769c765e38da5ecf98c4b261b10ff0a2f14f0881b434f67af7 pcre-8.43.tar.bz2
a088304318f7a04f90263efbab20b423e67fb6e3d829e7bc080fd44c29e98bc29cab992b73ed1b992af89cdf4606667af20572558a3a96549b7bd9479d0e6d88 stack-frame-size-detection.patch"
This diff is collapsed.
Click to expand it.
system/pcre/stack-frame-size-detection.patch
0 → 100644
+
15
−
0
View file @
cd6af026
--- pcre-8.43/pcre_exec.c.old 2018-02-20 15:21:37.000000000 +0000
+++ pcre-8.43/pcre_exec.c 2019-07-06 19:36:59.078411271 +0000
@@ -509,6 +509,12 @@
(e.g. stopped by repeated call or recursion limit)
*/
+#ifdef __GNUC__
+static int
+match(REGISTER PCRE_PUCHAR eptr, REGISTER const pcre_uchar *ecode,
+ PCRE_PUCHAR mstart, int offset_top, match_data *md, eptrblock *eptrb,
+ unsigned int rdepth) __attribute__((noinline,noclone));
+#endif
static int
match(REGISTER PCRE_PUCHAR eptr, REGISTER const pcre_uchar *ecode,
PCRE_PUCHAR mstart, int offset_top, match_data *md, eptrblock *eptrb,
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