Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/x86info/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- Makefile 5 Oct 2005 14:40:25 -0000 1.18 +++ Makefile 27 Nov 2005 02:05:09 -0000 @@ -6,7 +6,7 @@ # PORTNAME= x86info -PORTVERSION= 1.16 +PORTVERSION= 1.17 CATEGORIES= sysutils MASTER_SITES= http://www.codemonkey.org.uk/projects/x86info/ \ ${MASTER_SITE_SOURCEFORGE} Index: distinfo =================================================================== RCS file: /home/ncvs/ports/sysutils/x86info/distinfo,v retrieving revision 1.11 diff -u -r1.11 distinfo --- distinfo 5 Oct 2005 14:40:25 -0000 1.11 +++ distinfo 27 Nov 2005 02:05:09 -0000 @@ -1,2 +1,3 @@ -MD5 (x86info-1.16.tgz) = 57cfb84b006f0f5634ee8bd458330328 -SIZE (x86info-1.16.tgz) = 51410 +MD5 (x86info-1.17.tgz) = bef27fba7b0c3a9aeda63372a670f3a9 +SHA256 (x86info-1.17.tgz) = c9f7a0183af65b8e7777757a9abe593caed7c4696d4af7421871243785aadeff +SIZE (x86info-1.17.tgz) = 51625 Index: files/patch-cpuid.c =================================================================== RCS file: files/patch-cpuid.c diff -N files/patch-cpuid.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-cpuid.c 27 Nov 2005 02:05:09 -0000 @@ -0,0 +1,11 @@ +--- cpuid.c.orig Sat Nov 26 20:51:01 2005 ++++ cpuid.c Sat Nov 26 20:51:24 2005 +@@ -40,7 +40,7 @@ + snprintf (cpuname,18, "/dev/cpu/%d/cpuid", CPU_number); + fh = open (cpuname, O_RDONLY); + if (fh != -1) { +- lseek64 (fh, (off64_t)idx, SEEK_CUR); ++ lseek (fh, (off_t)idx, SEEK_CUR); + read (fh, &buffer[0], 16); + if (eax!=0) *eax = (*(unsigned *)(buffer )); + if (ebx!=0) *ebx = (*(unsigned *)(buffer+ 4)); Index: files/patch-mptable.c =================================================================== RCS file: files/patch-mptable.c diff -N files/patch-mptable.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-mptable.c 27 Nov 2005 02:05:09 -0000 @@ -0,0 +1,11 @@ +--- mptable.c.orig Tue Oct 4 19:15:02 2005 ++++ mptable.c Tue Oct 4 19:15:09 2005 +@@ -39,8 +39,6 @@ + #include "mptable.h" + #include "x86info.h" + +-typedef unsigned long vm_offset_t; +- + /* EBDA is @ 40:0e in real-mode terms */ + #define EBDA_POINTER 0x040e /* location of EBDA pointer */ +