[Glibc-bsd-commits] r2471 - in trunk/libfreebsd: . debian

Aurelien Jarno aurel32 at alioth.debian.org
Sun Apr 19 08:48:36 UTC 2009


Author: aurel32
Date: 2009-04-19 08:48:36 +0000 (Sun, 19 Apr 2009)
New Revision: 2471

Modified:
   trunk/libfreebsd/Versions
   trunk/libfreebsd/debian/changelog
   trunk/libfreebsd/nlist.c
Log:
  * Export again __fdnlist, it is used by libkvm0.



Modified: trunk/libfreebsd/Versions
===================================================================
--- trunk/libfreebsd/Versions	2009-04-18 20:45:14 UTC (rev 2470)
+++ trunk/libfreebsd/Versions	2009-04-19 08:48:36 UTC (rev 2471)
@@ -5,7 +5,7 @@
     devname; devname_r;
     getbootfile;
     sysctlbyname; sysctlnametomib;
-    nlist;
+    nlist; __fdnlist;
   local:
     *;
 };

Modified: trunk/libfreebsd/debian/changelog
===================================================================
--- trunk/libfreebsd/debian/changelog	2009-04-18 20:45:14 UTC (rev 2470)
+++ trunk/libfreebsd/debian/changelog	2009-04-19 08:48:36 UTC (rev 2471)
@@ -1,3 +1,9 @@
+libfreebsd (0.0-7) unstable; urgency=low
+
+  * Export again __fdnlist, it is used by libkvm0.
+
+ -- Aurelien Jarno <aurel32 at debian.org>  Sun, 19 Apr 2009 10:13:26 +0200
+
 libfreebsd (0.0-6) unstable; urgency=low
 
   [ Guillem Jover ]

Modified: trunk/libfreebsd/nlist.c
===================================================================
--- trunk/libfreebsd/nlist.c	2009-04-18 20:45:14 UTC (rev 2470)
+++ trunk/libfreebsd/nlist.c	2009-04-19 08:48:36 UTC (rev 2471)
@@ -53,7 +53,6 @@
 
 #define SIZE_T_MAX 0xffffffffU
 
-static int __fdnlist(int, struct nlist *);
 static int __aout_fdnlist(int, struct nlist *);
 static int __elf_fdnlist(int, struct nlist *);
 
@@ -83,7 +82,11 @@
 #endif
 };
 
-static int
+/* FIXME: This function is used by libkvm0, so we need to export it.
+   It is not declared in the include files though. */
+int __fdnlist(int, struct nlist *);
+
+int
 __fdnlist(fd, list)
 	int fd;
 	struct nlist *list;




More information about the Glibc-bsd-commits mailing list