| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Add --enable-debug configure option. It enables -g which was
already set by abuild since -dbg is there. But more importantly
this will enable CFI unwind info for assembly sources, so this
makes the unwind info in -dbg package complete.
|
|
|
|
| |
this fixes timezones on MIPS64
|
| |
|
|
|
|
|
| |
It's moderately important as it improves startup time for
openssl library.
|
|
|
|
|
|
|
|
|
| |
wcwidth wrongly returned 0 for most of planes 4 and up
missing case mapping between U+03F3 and U+037F
wrong cacosh results for arguments with negative imaginary part
wrong catanf/catanl results for various classes of arguments
wrong return value for ungetc with argument outside [0,UCHAR_MAX]
posix_openpt with no ptys available produced wrong errno
|
| |
|
|
|
|
|
|
|
|
| |
The current URL states the following:
musl has moved to a new domain: musl.libc.org
Don't think it is worth it to rebuild the package for this though.
|
| |
|
|
|
|
|
|
| |
remove ' --' from exec line to allow passing parameters
prefixed with --
bump pkgrel
|
| |
|
| |
|
|
|
|
|
|
| |
move the libintl.h header to its own subpackage instead of deleting it.
This makes it possible to build packages with the musl libintl instead
of GNU gettext.
|
| |
|
|
|
|
|
| |
fix regression introduced by commit d4a7955c (main/musl: fix ldd when
used with libraries).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
From Bernhard Ehlers:
> BTW: The ldd program (in all alpine versions) creates invalid output
> in case you use it on a library, here an example:
>
> ~ # ldd /lib/libssl.so.1.1
> ldd (0x7ffb49916000)
> libcrypto.so.1.1 => /lib/libcrypto.so.1.1 (0x7ffb49618000)
> libc.musl-x86_64.so.1 => ldd (0x7ffb49916000)
>
> The loader ld-musl-x86_64.so.1 and libc.musl-x86_64.so.1 point to
> "ldd", what's totally wrong. That's why you have to copy the ldd
> binary to your current directory before using cx_freeze.
>
> Here my alternative ldd, it works much better with cx_freeze (and
> pyinstaller):
> #!!/bin/sh
> exec /lib/ld-musl-* --list -- "$@"
>
> Here an example, with more reasonable results:
> ~ # ldd.new /lib/libssl.so.1.1
> /lib/ld-musl-x86_64.so.1 (0x7fa671495000)
> libcrypto.so.1.1 => /lib/libcrypto.so.1.1 (0x7fa671197000)
> libc.musl-x86_64.so.1 => /lib/ld-musl-x86_64.so.1
> (0x7fa671495000)
http://lists.alpinelinux.org/alpine-devel/6694.html
|
| |
|
| |
|
|
|
|
|
| |
Added patch from commit 8f12c4e110acb3bbbdc8abfb3a552c3ced718039, which
fixes an out-of-bound read in sscanf.
|
|
|
|
| |
Copy from upstream
|
| |
|
|
|
|
|
|
|
| |
Paths for mips and ppc64el were wrong, several CARCH'es were missing.
On x86_64, this changes /lib64 from being a symlink to a directory
containg a symlink.
|
| |
|
| |
|
| |
|
|
|
|
| |
This issue affects e.g. Rust on aarch64.
|
|
|
|
| |
Clean up traces of uclibc, which we havent supported for years
|
|
|
|
|
|
|
| |
This additional features would avoid FTFBS later as the one found on
rngd_darn.c:208:31: error: 'PPC_FEATURE2_DARN' undeclared (first use in this function)
if (!(getauxval(AT_HWCAP2) & PPC_FEATURE2_DARN)) {
|
|
|
|
| |
bug upstream
|
| |
|
| |
|
|
|
|
|
| |
this version will only activate itself under a relevant configuration where the cloudflare
DNS problem is harmful
|
| |
|
| |
|
|
|
|
| |
Notable this fixes libreoffice to handle utf8 filenames properly.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
- use UTC instead of GMT when no timezone is specified
- fix sysconf for initite rlimits
|
| |
|
|
|
|
| |
dalias actually likes this version, so hopefully it should be in musl soon
|
| |
|
| |
|
|
|
|
| |
likely fixes #8009
|
|
|
|
|
|
|
|
| |
This can allow programs to crash when $PATH contains elements that are larger than 1024 bytes.
Notably, PATH_MAX is larger than 1024 bytes, so this can cause environments with very long, but
valid path elements in $PATH to have program crashes when they spawn new processes.
No CVE for this one at the time of writing, but this seems like a probable security bug.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
- incorporate unreleased upstream bugfixes from august to present:
- fix OOB reads in memmem implementations
- fix undefined behaviour in memset
- fix memory leak in clearenv
- fix unicode processing bugs
- fix signal masking issue with pthread_create
- fix glob descent with GLOB_PERIOD
- implement fopencookie(3)
|