diff options
author | 2018-06-26 13:28:22 +0300 | |
---|---|---|
committer | 2018-11-25 23:42:11 +0100 | |
commit | 2cf22bf38e08b426db28e04138a95ad8c0ca9d21 (patch) | |
tree | 95076171215f80419d3a77b07c11b37bb645f4ce | |
parent | d3228692be70b7ae8f3ca56c1793ee57dce02580 (diff) | |
download | buildroot-2cf22bf38e08b426db28e04138a95ad8c0ca9d21.tar.gz buildroot-2cf22bf38e08b426db28e04138a95ad8c0ca9d21.tar.bz2 |
libnss: drop obsolete patch
uClibc implements RTLD_NOLOAD for quite some time now. Remove the patch
adding a dummy definition of RTLD_NOLOAD.
Cc: Joseph Kogut <joseph.kogut@gmail.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit cf9100d3f20dd87bbd8de473b0b0321db5f31f83)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/libnss/0001-uclibc.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/package/libnss/0001-uclibc.patch b/package/libnss/0001-uclibc.patch deleted file mode 100644 index b81db930be..0000000000 --- a/package/libnss/0001-uclibc.patch +++ /dev/null @@ -1,20 +0,0 @@ -uCLibc does not define RTLD_NOLOAD. - -[Gustavo: update for nss 3.16.1] -Signed-off-by: Will Newton <will.newton@imgtec.com> - -diff -Nura nss-3.16.1.orig/nss/lib/freebl/stubs.c nss-3.16.1/nss/lib/freebl/stubs.c ---- nss-3.16.1.orig/nss/lib/freebl/stubs.c 2014-06-18 10:34:30.529997002 -0300 -+++ nss-3.16.1/nss/lib/freebl/stubs.c 2014-06-18 10:36:25.508882650 -0300 -@@ -594,6 +594,11 @@ - return SECSuccess; - } - -+/* uClibc does not define RTLD_NOLOAD. */ -+#ifndef RTLD_NOLOAD -+#define RTLD_NOLOAD 0 -+#endif -+ - /* - * fetch the library if it's loaded. For NSS it should already be loaded - */ |