]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 12 Jul 2000 20:39:58 +0000 (20:39 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 12 Jul 2000 20:39:58 +0000 (20:39 +0000)
2000-07-12  H.J. Lu  <hjl@gnu.org>

* resolv/Versions (libresolv): Add __res_hostalias to GLIBC_2.2
for _nss_dns_gethostbyname2_r in resolv/nss_dns/dns-host.c.

2000-07-12  Ulrich Drepper  <drepper@redhat.com>

* wcsmbs/wcsmbsload.c (__wcsmbs_load_conv): Shut gcc up although
it is wrong.

ChangeLog
linuxthreads/ChangeLog
localedata/ChangeLog
resolv/Versions
wcsmbs/wcsmbsload.c

index d3d9d900ba5dcf96a83d6a2e5df7e796f7b9ad93..af77b4c0180e15a955f6728546fab0c194af9f08 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2000-07-12  H.J. Lu  <hjl@gnu.org>
+
+       * resolv/Versions (libresolv): Add __res_hostalias to GLIBC_2.2
+       for _nss_dns_gethostbyname2_r in resolv/nss_dns/dns-host.c.
+
+2000-07-12  Ulrich Drepper  <drepper@redhat.com>
+
+       * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv): Shut gcc up although
+       it is wrong.
+
 2000-07-12  Bruno Haible  <haible@clisp.cons.org>
 
        * iconv/gconv_open.c (__gconv_open): Merge duplicated code.
index 10639f79c40bd11a71abf47afe1bf8c6d72c24c2..8bd9c75cdca78d201a72d1469590b88d0a04e2db 100644 (file)
@@ -1,3 +1,7 @@
+2000-07-12  Bruno Haible  <haible@clisp.cons.org>
+
+       * Examples/ex8.c: Include <sys/wait.h>, not <wait.h>.
+
 2000-07-12  Ulrich Drepper  <drepper@redhat.com>
 
        * spinlock.c: Fix code for TEST_FOR_COMPARE_AND_SWAP being defined.
index 1c15fa1b077f8cd7089617dccec8a46f103ccc0d..57c2f34343959fce417510b8ecaa364c5a1c2915 100644 (file)
@@ -1,3 +1,27 @@
+2000-07-11  Andreas Jaeger  <aj@suse.de>
+
+       * Makefile (locale_test_suite): Always run test suite.
+       ($(addprefix $(objpfx),$(CTYPE_FILES))): Add extra parameter for
+       gen-locale.sh.
+       (do-collate-test): Likewise.
+       (do-tst-fmon): Likewise.
+       (do-tst-locale): Likewise.
+       (do-tst-rpmatch): Likewise.
+       (do-tst-trans): Likewise.
+       (do-tst-mbswcs): Likewise.
+       (do-tst-ctype): Likewise.
+
+       * sort-test.sh : Rewrite to work with static only builds.
+       * tst-ctype.sh: Likewise.
+       * tst-fmon.sh: Likewise.
+       * tst-locale.sh: Likewise.
+       * tst-mbswcs.sh: Likewise.
+       * tst-rpmatch.sh: Likewise.
+       * tst-trans.sh: Likewise.
+
+       * gen-locale.sh (locfile): Fix it for building with
+       sourcedir==builddir and for static only builds.
+
 2000-07-07  Ulrich Drepper  <drepper@redhat.com>
 
        * locales/POSIX: Remove repertoire map reference.
index 3448c9281b18046155e3bcfb3c111face57371c4..98fa762a753c063ea79f68f9edfae9a3c1c9c012 100644 (file)
@@ -52,7 +52,7 @@ libresolv {
   }
   GLIBC_2.2 {
     __res_nmkquery; __res_nquery; __res_nquerydomain; __res_nsearch;
-    __ns_get16;
+    __ns_get16; __res_hostalias;
 }
 
 libnss_dns {
index b152b3541ce9fecf9f82488e728426f07857bc97..51c7ef50516fc2a5988ff8142c3833297e3670ee 100644 (file)
@@ -182,8 +182,8 @@ __wcsmbs_load_conv (const struct locale_data *new_category)
             since the internal character set is supposed to be able to
             represent all others.  */
          new_towc = getfct ("INTERNAL", complete_name);
-         if (new_towc != NULL)
-           new_tomb = getfct (complete_name, "INTERNAL");
+         new_tomb = (new_towc != NULL
+                     ? getfct (complete_name, "INTERNAL") : NULL);
 
          /* If any of the conversion functions is not available we don't
             use any since this would mean we cannot convert back and
This page took 0.0658 seconds and 5 git commands to generate.