This is the mail archive of the libc-alpha@sourceware.cygnus.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]

Re: glibc 2.1.3pre3


On Sat, Jan 29, 2000 at 09:35:31AM +0100, Andreas Jaeger wrote:
> John>   It was a little bit time-consuming, but I've recompiled my ~206 packages
> John> now, and they all went pretty well except for pciutils-2.1.4 and
> John> isapnptools-1.21.
> John>   The ISA utilities get stuff like this (broken in pre1):
> John> 	res-access.o(.text+0x130d): undefined reference to `outb'
> John> 	res-access.o(.text+0x131b): undefined reference to `inb'

> Which compiler flags where used to compile isapnptools?

  Note the pre1 comment.  That depends on pciutils, so I couldn't test
for pre3.  Now that I've got pciutils fixed, isapnptools seems happy.

> John>   The PCI utilities have some conflicts with the header files.  That
> John> one started in pre3, but I don't have the error messages handy.
> 
> That's a bug in PCI utils.  pciutils 2.1.5 will contain: ...  I don't
> have a patch handy - but the relevant part of the file looks like:

  I fixed it like this and it seems to be happy.

--- ./lib/i386-ports.c.OLD	Fri Jan 22 13:11:40 1999
+++ ./lib/i386-ports.c	Sat Jan 29 10:18:59 2000
@@ -8,11 +8,12 @@
  *	Can be freely distributed and used under the terms of the GNU GPL.
  */
 
-#include <asm/io.h>
 #include <unistd.h>
 
 #ifdef __GLIBC__
 #include <sys/io.h>
+#else
+#include <asm/io.h>
 #endif
 
 #include "internal.h"

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