libnss-uclibc.patch 507 B

12345678910111213141516171819
  1. uCLibc does not define RTLD_NOLOAD.
  2. Signed-off-by: Will Newton <will.newton@imgtec.com>
  3. --- nss-3.12.9.old/mozilla/security/nss/lib/freebl/stubs.c 2011-07-08 13:32:54.964338355 +0100
  4. +++ nss-3.12.9/mozilla/security/nss/lib/freebl/stubs.c 2011-07-08 13:33:57.255337490 +0100
  5. @@ -535,6 +535,11 @@
  6. return SECSuccess;
  7. }
  8. +/* uClibc does not define RTLD_NOLOAD. */
  9. +#ifndef RTLD_NOLOAD
  10. +#define RTLD_NOLOAD 0
  11. +#endif
  12. +
  13. /*
  14. * fetch the library if it's loaded. For NSS it should already be loaded
  15. */