Go to file
Florian Weimer aa81e6c35b Resolves: #1462820
Auto-sync with upstream release/2.23/master

Upstream commit: d990d79610362f823292f9d869b84b4ec4491159

- Ignore and remove LD_HWCAP_MASK for AT_SECURE programs (swbz#21209)
- Correct collation rules for Malayalam (swbz#19922, swbz#19919)
- fts: Fix symbol redirect for fts_set (swbz#21289)
- powerpc: Fix write-after-destroy in lock elision (swbz#20822)
- localedata: bs_BA: fix yesexpr/noexpr (swbz#20974)
2017-06-20 06:54:59 +02:00
bench.mk
build-locale-archive.c
ChangeLog.old
gen-quilt-series.sh Remove the series file 2016-05-09 13:08:25 +02:00
glibc_post_upgrade.c
glibc-aarch64-tls-fixes.patch
glibc-aarch64-workaround-nzcv-clobber-in-tlsdesc.patch
glibc-arm-hardfloat-3.patch
glibc-bench-build.patch
glibc-bench-compare
glibc-bug-regex-gcc5.patch
glibc-c-utf8-locale.patch
glibc-cs-path.patch
glibc-disable-rwlock-elision.patch
glibc-dns-host-gcc5.patch Rebase to 2.23 branch, commit a824d609581d5ee7544aabcbbc70e8da44b2b5b6 2016-05-09 13:29:20 +02:00
glibc-fedora-__libc_multiple_libcs.patch Resolves: #1462820 2017-06-20 06:54:59 +02:00
glibc-fedora-elf-ORIGIN.patch
glibc-fedora-i386-tls-direct-seg-refs.patch
glibc-fedora-include-bits-ldbl.patch
glibc-fedora-ldd.patch
glibc-fedora-linux-tcsetattr.patch
glibc-fedora-localedata-rh61908.patch
glibc-fedora-localedef.patch
glibc-fedora-locarchive.patch
glibc-fedora-manual-dircategory.patch
glibc-fedora-nis-rh188246.patch
glibc-fedora-nptl-linklibc.patch
glibc-fedora-nscd.patch
glibc-fedora-ppc-unwind.patch
glibc-fedora-streams-rh436349.patch
glibc-fedora-uname-getrlimit.patch
glibc-gcc-PR69537.patch Add workaround for GCC PR69537 2016-01-28 14:24:44 +01:00
glibc-gethnamaddr-gcc5.patch Rebase to 2.23 branch, commit a824d609581d5ee7544aabcbbc70e8da44b2b5b6 2016-05-09 13:29:20 +02:00
glibc-ld-ctype-gcc5.patch
glibc-ndebug-unused.patch glibc-2.23.1-2 2016-02-26 04:48:21 -05:00
glibc-nscd-sysconfig.patch
glibc-nsswitch-Add-group-merging-support.patch Resolves: #1146822 2016-01-13 12:59:35 -05:00
glibc-res-hconf-gcc5.patch Sync with upstream master. 2015-10-21 15:24:28 -04:00
glibc-rh697421.patch
glibc-rh741105.patch Sync with upstream master. 2015-10-21 15:24:28 -04:00
glibc-rh819430.patch
glibc-rh825061.patch
glibc-rh827510.patch
glibc-rh952799.patch
glibc-rh1009145.patch
glibc-rh1013801.patch
glibc-rh1070416.patch
glibc-rh1204521.patch Resolves: #1204521 2016-05-11 12:11:15 +02:00
glibc-rh1282011.patch Resolves: #1282011 2016-05-11 12:14:08 +02:00
glibc-rh1321372.patch Resolves: #1321372 2016-05-09 13:29:21 +02:00
glibc.spec Resolves: #1462820 2017-06-20 06:54:59 +02:00
libc-lock.h
nscd.conf
nsswitch.conf
power6emul.c
quilt-patch.sh
README.quilt
sources Resolves: #1462820 2017-06-20 06:54:59 +02:00
STAGE1-glibc Adding BUILD_CC to the STAGE1 bootstrap recipes 2015-12-03 15:34:40 +01:00
STAGE1-glibc-headers Adding BUILD_CC to the STAGE1 bootstrap recipes 2015-12-03 15:34:40 +01:00
SUPPORTED glibc-2.23.1-4 2016-02-26 06:26:31 -08:00
sync-upstream.sh glibc-2.23.1-2 2016-02-26 04:48:21 -05:00

This package supports working with patch files using quilt.

To regenerate the quilt series file run:
./gen-quilt-series.sh

Setup environment:
export QUILT_PATCHES=$PWD

Setup the source:
./quilt-patch.sh [-f]

Use `-f` if you want to have quilt-patch always remove the existing
source directory before starting. Otherwise you'll be patching on top of
an already patched tree generated perhaps by `*pkg prep`.

Create a new patch:
cd glibc-2.17-c758a686/
quilt new glibc-rh1234622.patch
quilt add ports/sysdeps/unix/sysv/linux/aarch64/nptl/libpthread.abilist
vi ports/sysdeps/unix/sysv/linux/aarch64/nptl/libpthread.abilist
quilt refresh
cd ..
git add glibc-rh1234622.patch
<Then edit the glibc.spec file to build with the new patch>
e.g.
...
PatchXXXX: glibc-rh1234622.patch
...
%patchXXXX -p1
...
git add glibc.spec
git commit

You're done!