This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: make check failure on x86-64 with abilist


Roland McGrath <roland at redhat dot com> writes:

>> So, should we make it internal now?  I don't see where it's used and
>> it's not exported in /usr/include.
>
> Sounds fine to me.

Patch is appended.  Ok to commit?

>> Btw. make check will always abort if the abi check fails, it's not
>> possible to rerun make check and continue - like it's done with all
>> other tests that create a .out file,
>
> That means you didn't lose anything.  make check will always update all
> .out files, and then do check-abi (show you the diff).

Excellent!

Andreas

2003-03-19  Andreas Jaeger  <aj at suse dot de>

	* intl/Versions: Make _nl_msg_cat_cntr,  _nl_default_dirname and
	_nl_domain_bindings as private.

============================================================
Index: intl/Versions
--- intl/Versions	1 May 2002 16:42:08 -0000	1.4
+++ intl/Versions	19 Mar 2003 11:01:08 -0000
@@ -1,8 +1,5 @@
 libc {
   GLIBC_2.0 {
-    # global variables
-    _nl_msg_cat_cntr; _nl_default_dirname; _nl_domain_bindings;
-
     # functions used in inline functions or macros
     __dcgettext;
 
@@ -27,5 +24,9 @@ libc {
 
     # n*
     ngettext;
+  }
+  GLIBC_PRIVATE {
+    # global variables
+    _nl_msg_cat_cntr; _nl_default_dirname; _nl_domain_bindings;
   }
 }

-- 
 Andreas Jaeger
  SuSE Labs aj at suse dot de
   private aj at arthur dot inka dot de
    http://www.suse.de/~aj


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]