diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-11-13 21:37:18 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-11-13 21:37:18 +0100 |
commit | 4b173045e97ab47f92bc27e9bef3a04f5742b263 (patch) | |
tree | 5c907ac100fc957240f4936d58c16a26554cfcdf /patches/glibc/ports-2.10.1/180-resolv-dynamic.patch | |
parent | 590ca63f0dc6a548e2254d71b065efbf38ed85d8 (diff) | |
download | crosstool-ng-4b173045e97ab47f92bc27e9bef3a04f5742b263.tar.gz crosstool-ng-4b173045e97ab47f92bc27e9bef3a04f5742b263.tar.bz2 crosstool-ng-4b173045e97ab47f92bc27e9bef3a04f5742b263.zip |
libc/glibc: add 2.10.1
Woo... It seems the glibc guys finally decided that tarballs
were not deprecated, in fact.
The patchset was vampirised from Gentoo (kudos, guys!), and
applies to glibc+ports, so that's why it's been added as a
patchset against ports, not against glibc.
Diffstat (limited to 'patches/glibc/ports-2.10.1/180-resolv-dynamic.patch')
-rw-r--r-- | patches/glibc/ports-2.10.1/180-resolv-dynamic.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/patches/glibc/ports-2.10.1/180-resolv-dynamic.patch b/patches/glibc/ports-2.10.1/180-resolv-dynamic.patch new file mode 100644 index 00000000..ea88fa0f --- /dev/null +++ b/patches/glibc/ports-2.10.1/180-resolv-dynamic.patch @@ -0,0 +1,39 @@ +ripped from SuSE + +if /etc/resolv.conf is updated, then make sure applications +already running get the updated information. + +http://bugs.gentoo.org/177416 + +diff -durN glibc-2.10.1.orig/resolv/res_libc.c glibc-2.10.1/resolv/res_libc.c +--- glibc-2.10.1.orig/resolv/res_libc.c 2009-02-07 05:27:42.000000000 +0100 ++++ glibc-2.10.1/resolv/res_libc.c 2009-11-13 00:49:59.000000000 +0100 +@@ -22,6 +22,7 @@ + #include <arpa/nameser.h> + #include <resolv.h> + #include <bits/libc-lock.h> ++#include <sys/stat.h> + + + /* The following bit is copied from res_data.c (where it is #ifdef'ed +@@ -95,6 +96,20 @@ + __res_maybe_init (res_state resp, int preinit) + { + if (resp->options & RES_INIT) { ++ static time_t last_mtime, last_check; ++ time_t now; ++ struct stat statbuf; ++ ++ time (&now); ++ if (now != last_check) { ++ last_check = now; ++ if (stat (_PATH_RESCONF, &statbuf) == 0 && last_mtime != statbuf.st_mtime) { ++ last_mtime = statbuf.st_mtime; ++ atomicinclock (lock); ++ atomicinc (__res_initstamp); ++ atomicincunlock (lock); ++ } ++ } + if (__res_initstamp != resp->_u._ext.initstamp) { + if (resp->nscount > 0) + __res_iclose (resp, true); |