| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Fixes #10536
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Build errors:
> /usr/lib/gcc/s390x-alpine-linux-musl/8.3.0/../../../../s390x-alpine-linux-musl/bin/ld:
> mtasker_context.o: in function `pdns_swapcontext(pdns_ucontext_t&,
> pdns_ucontext_t const&)':
> mtasker_context.cc:(.text+0xe8): undefined reference to `jump_fcontext'
> /usr/lib/gcc/s390x-alpine-linux-musl/8.3.0/../../../../s390x-alpine-linux-musl/bin/ld:
> mtasker_context.o: in function `pdns_makecontext(pdns_ucontext_t&,
> boost::function<void ()>&)': mtasker_context.cc:(.text+0x1ea): undefined
> reference to `make_fcontext'
> /usr/lib/gcc/s390x-alpine-linux-musl/8.3.0/../../../../s390x-alpine-linux-musl/bin/ld:
> mtasker_context.cc:(.text+0x20e): undefined reference to `jump_fcontext'
> /usr/lib/gcc/s390x-alpine-linux-musl/8.3.0/../../../../s390x-alpine-linux-musl/bin/ld:
> mtasker_context.o: in function `threadWrapper':
> mtasker_context.cc:(.text+0x27e): undefined reference to `jump_fcontext'
> /usr/lib/gcc/s390x-alpine-linux-musl/8.3.0/../../../../s390x-alpine-linux-musl/bin/ld:
> mtasker_context.cc:(.text+0x382): undefined reference to `jump_fcontext'
Merged in GH-7998
|
|
|
|
| |
Co-Authored-By: TBK <858296+TBK@users.noreply.github.com>
|
|
|
|
|
|
| |
- enable s390x
- add & enable botan-dev for gost
- remove chown from package function
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
build step failed on s390x with undefined references to:
- jump_fcontext
- make_fcontext
```
CXXLD testrunner
/usr/s390x-alpine-linux-musl/bin/ld: mtasker_context.o: in function
`pdns_swapcontext(pdns_ucontext_t&, pdns_ucontext_t const&)':
mtasker_context.cc:(.text+0xe8): undefined reference to `jump_fcontext'
/usr/s390x-alpine-linux-musl/bin/ld: mtasker_context.o: in function
`pdns_makecontext(pdns_ucontext_t&, boost::function<void ()>&)':
mtasker_context.cc:(.text+0x1ea): undefined reference to `make_fcontext'
/usr/s390x-alpine-linux-musl/bin/ld: mtasker_context.cc:(.text+0x20e):
undefined reference to `jump_fcontext'
/usr/s390x-alpine-linux-musl/bin/ld: mtasker_context.o: in function
`threadWrapper': mtasker_context.cc:(.text+0x27e): undefined reference
to `jump_fcontext'
/usr/s390x-alpine-linux-musl/bin/ld: mtasker_context.cc:(.text+0x382):
undefined reference to `jump_fcontext'
collect2: error: ld returned 1 exit status
make[2]: *** [Makefile:1210: testrunner] Error 1
```
|
|
|
|
| |
boost-context is now available
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
CVE-2018-14644 - CVE-2018-14626
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
- use pkgname in download URL
- add check function
- enable unit tests for check
- match pkgusers/pkggroups to pre-install
- add dependencies configure is seeking
- remove obsolete (since 4.0.4) boost-fix.patch
- update license
- add file for configure script
|
|
|
|
| |
(CVE-2017-15090-15092-15093-15094). Fixes #8253
|
|
|
|
|
|
|
| |
Most of these updates is based on data from https://repology.org/,
detection based on permanent redirect from http:// to https://.
$source urls are updated when they contain $url as substring.
|
| |
|
| |
|
|
|
|
|
|
|
| |
pdns-recursor requires context functions (swapcontext, getcontext,
makecontext). These functions are deprecated in POSIX and not
implemented in musl. s390x also does not support boost context (and
coroutine1/2) yet.
|
| |
|
|
|
|
|
|
| |
This is very bad practice, we can't know if the package user has been
originally created by apk or by the user and if the user needs
it or not.
|
| |
|
| |
|
| |
|
| |
|
|
|