]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Thu Mar 28 03:00:43 1996 Roland McGrath <roland@whiz-bang.gnu.ai.mit.edu> cvs/libc-960328
authorRoland McGrath <roland@gnu.org>
Thu, 28 Mar 1996 09:48:58 +0000 (09:48 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 28 Mar 1996 09:48:58 +0000 (09:48 +0000)
* locale/nl_langinfo.c (nl_langinfo): Use DATA->values instead of
DATA->strings.

* Makerules (BUILD_CFLAGS): Remove $(common-objpfx) from config.h.

* configure.in (.weakext check): Fix asm code to use .weakext instead
of .weak!  Fix bogus test calls.
* configure: Regenerated.

ChangeLog
Makerules
configure
configure.in
locale/nl_langinfo.c

index 2c683f8aedc0f7d178ca542c8f7d9cce91d23be7..7dd1a4bd173d14bfcd889aafc1f8fc96866ed06c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Thu Mar 28 03:00:43 1996  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
+
+       * locale/nl_langinfo.c (nl_langinfo): Use DATA->values instead of
+       DATA->strings.
+
+       * Makerules (BUILD_CFLAGS): Remove $(common-objpfx) from config.h.
+
+       * configure.in (.weakext check): Fix asm code to use .weakext instead
+       of .weak!  Fix bogus test calls.
+       * configure: Regenerated.
+
 Thu Mar 28 03:25:10 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
 
        * locale/programs/xmalloc.c: Test _LIBC as well as STDC_HEADERS.
index c68395cfd9e0a0d6dc791bc7061f81aa174be723..296e811432b7f90cbf4ba2ee6bdd9a9205418b1f 100644 (file)
--- a/Makerules
+++ b/Makerules
@@ -610,7 +610,8 @@ cd $(@D); $(BUILD_CC) $(BUILD_CFLAGS) $(<:$(common-objpfx)%=%) -o $(@F)
 endef
 
 # We always want to use configuration definitions.
-BUILD_CFLAGS = -include $(common-objpfx)config.h
+# This is always used in $(common-objdir), so we use no directory name.
+BUILD_CFLAGS = -include config.h
 
 # Support the GNU standard name for this target.
 .PHONY: check
index 83715cdda7d3251e498302e282ad5f447f566f92..09dd165c4154c19b93952ce6bd168553df1aae8b 100755 (executable)
--- a/configure
+++ b/configure
@@ -1437,7 +1437,7 @@ else
 ${libc_cv_asm_global_directive} foo
 foo: .long 0
 .weakext foo
-.weak bar, foo
+.weakext bar, foo
 EOF
   if ${CC-cc} $CFLAGS -c conftest.s 2>/dev/null; then
     libc_cv_asm_weakext_directive=yes
@@ -1452,12 +1452,12 @@ echo "$ac_t""$libc_cv_asm_weakext_directive" 1>&4
   fi # no .weak
 fi # not ELF
 
-if test $libc_cv_asm_weak_directive; then
+if test $libc_cv_asm_weak_directive = yes; then
   cat >> confdefs.h <<\EOF
 #define HAVE_ASM_WEAK_DIRECTIVE 1
 EOF
 
-elif test $libc_cv_asm_weakext_directive; then
+elif test $libc_cv_asm_weakext_directive = yes; then
   cat >> confdefs.h <<\EOF
 #define HAVE_ASM_WEAKEXT_DIRECTIVE 1
 EOF
index b2727d54f22cefaff3caf90f4cab443f70d4f058..734c5ad324b450d185af95e5304b008c0090eebc 100644 (file)
@@ -451,7 +451,7 @@ cat > conftest.s <<EOF
 ${libc_cv_asm_global_directive} foo
 foo: .long 0
 .weakext foo
-.weak bar, foo
+.weakext bar, foo
 EOF
   if ${CC-cc} $CFLAGS -c conftest.s 2>/dev/null; then
     libc_cv_asm_weakext_directive=yes
@@ -463,9 +463,9 @@ EOF
   fi # no .weak
 fi # not ELF
 
-if test $libc_cv_asm_weak_directive; then
+if test $libc_cv_asm_weak_directive = yes; then
   AC_DEFINE(HAVE_ASM_WEAK_DIRECTIVE)
-elif test $libc_cv_asm_weakext_directive; then
+elif test $libc_cv_asm_weakext_directive = yes; then
   AC_DEFINE(HAVE_ASM_WEAKEXT_DIRECTIVE)
 fi
 
index 83d35dcb701f3f61d9a0ed5ce8d6ca6f5f3b81f8..a9fa4238c2e4b20c23cf88f9cf63cf50722c0e0d 100644 (file)
@@ -1,5 +1,5 @@
 /* nl_langinfo -- User interface for extracting locale-dependent parameters.
-Copyright (C) 1995 Free Software Foundation, Inc.
+Copyright (C) 1995, 1996 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
 
 The GNU C Library is free software; you can redistribute it and/or
@@ -62,5 +62,5 @@ nl_langinfo (item)
     }
 
   /* Return the string for the specified item.  */
-  return (char *) data->strings[index];
+  return (char *) data->values[index].string;
 }