Index: libdha/pci.c =================================================================== RCS file: /cvsroot/mplayer/main/libdha/pci.c,v retrieving revision 1.13 diff -u -r1.13 pci.c --- libdha/pci.c 2 Oct 2003 14:47:56 -0000 1.13 +++ libdha/pci.c 30 Apr 2004 19:08:18 -0000 @@ -492,6 +492,8 @@ #include "sysdep/pci_arm32.c" #elif defined(__powerpc__) #include "sysdep/pci_powerpc.c" +#elif defined(__x86_64__) +/* Nothing here right now */ #else #include "sysdep/pci_x86.c" #endif Index: libdha/sysdep/pci_linux.c =================================================================== RCS file: /cvsroot/mplayer/main/libdha/sysdep/pci_linux.c,v retrieving revision 1.9 diff -u -r1.9 pci_linux.c --- libdha/sysdep/pci_linux.c 28 Mar 2004 16:30:08 -0000 1.9 +++ libdha/sysdep/pci_linux.c 30 Apr 2004 19:08:18 -0000 @@ -7,7 +7,7 @@ #ifdef __i386__ // is this needed? #include #else -#if !defined(__sparc__) && !defined(__powerpc__) +#if !defined(__sparc__) && !defined(__powerpc__) && !defined(__x86_64__) #include #endif #endif @@ -117,7 +117,8 @@ return(0); } -#if (defined(__powerpc__) || defined(__sparc__) || defined(__sparc64__)) \ +#if (defined(__powerpc__) || defined(__sparc__) || defined(__sparc64__) \ + || defined(__x86_64__)) \ && defined(__linux__) && !defined(CONFIG_SVGAHELPER) #define CONFIG_PCI_LINUX_PROC #endif Index: libmpcodecs/native/RTjpegN.h =================================================================== RCS file: /cvsroot/mplayer/main/libmpcodecs/native/RTjpegN.h,v retrieving revision 1.1 diff -u -r1.1 RTjpegN.h --- libmpcodecs/native/RTjpegN.h 27 Dec 2001 21:27:29 -0000 1.1 +++ libmpcodecs/native/RTjpegN.h 30 Apr 2004 19:08:18 -0000 @@ -22,7 +22,7 @@ */ -#ifndef _I386_TYPES_H +#if !defined(_I386_TYPES_H) && !defined(_X86_64_TYPES_H) typedef unsigned char __u8; typedef unsigned short __u16; typedef unsigned long __u32;