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


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

can't use > GLIBC_2.3.2 as base version


libresolv was missing GLIBC_2.3.2 in Versions.def, and there was a
harmless typo in its Versions file (that at first I thought to be the
culprit of the error, but it turned out that it wasn't).

The problem would only show up for ports that chose to define the
DEFAULT or libresolv minimum version as something such as GLIBC_2.3.3.
versions.awk would complain that GLIBC_2.3.2 was not defined.

This patch fixes it.  Ok to install?

Index: ChangeLog
from  Alexandre Oliva  <aoliva@redhat.com>

	* resolv/Versions: Remove semicolon from the end of libresolv's
	GLIBC_2.3.2 version block.
	* Versions.def (libresolv): Add GLIBC_2.3.2.

Index: Versions.def
===================================================================
RCS file: /cvs/glibc/libc/Versions.def,v
retrieving revision 1.55
diff -u -p -r1.55 Versions.def
--- Versions.def 23 Jan 2004 21:08:08 -0000 1.55
+++ Versions.def 21 Feb 2004 07:03:28 -0000
@@ -81,6 +81,7 @@ libpthread {
 libresolv {
   GLIBC_2.0
   GLIBC_2.2
+  GLIBC_2.3.2
   GLIBC_PRIVATE
 }
 librt {
Index: resolv/Versions
===================================================================
RCS file: /cvs/glibc/libc/resolv/Versions,v
retrieving revision 1.15
diff -u -p -r1.15 Versions
--- resolv/Versions 22 Jul 2003 23:09:09 -0000 1.15
+++ resolv/Versions 21 Feb 2004 07:03:28 -0000
@@ -71,7 +71,7 @@ libresolv {
   }
   GLIBC_2.3.2 {
     __p_rcode;
-  };
+  }
   GLIBC_PRIVATE {
     # Needed in libnss_dns.
     __ns_name_unpack; __ns_name_ntop;
-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Happy GNU Year!                     oliva@{lsd.ic.unicamp.br, gnu.org}
Red Hat GCC Developer                 aoliva@{redhat.com, gcc.gnu.org}
Free Software Evangelist                Professional serial bug killer

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