Index: etc/inttypes.h =================================================================== RCS file: /cvsroot/mplayer/main/etc/inttypes.h,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 inttypes.h --- etc/inttypes.h 24 Feb 2001 20:28:46 -0000 1.1.1.1 +++ etc/inttypes.h 29 Jan 2004 18:47:00 -0000 @@ -1,13 +1,4 @@ // fallback if the user doesn't have inttypes.h (libc5 systems) -typedef unsigned char uint8_t; -typedef unsigned short uint16_t; -typedef unsigned long uint32_t; -typedef unsigned long long uint64_t; - -typedef signed char int8_t; -typedef signed short int16_t; -typedef signed long int32_t; -typedef signed long long int64_t; - +#include Index: configure =================================================================== RCS file: /cvsroot/mplayer/main/configure,v retrieving revision 1.833 diff -u -r1.833 configure --- configure 25 Jan 2004 18:18:21 -0000 1.833 +++ configure 29 Jan 2004 18:47:01 -0000 @@ -2148,9 +2148,9 @@ _inttypes=no cc_check && _inttypes=yes if test "$_inttypes" = yes ; then - die "you don't have inttypes.h, but sys/bitypes.h is present. Please copy etc/inttypes.h.link into the include path, rename it to inttypes.h and re-run configure." + die "You don't have inttypes.h, but sys/bitypes.h is present. Please copy etc/inttypes.h into the include path, and re-run configure." else - die "cannot find header either inttypes.h or bitypes.h (see DOCS/HTML/en/faq.html)" + die "Cannot find header either inttypes.h or bitypes.h (see DOCS/HTML/en/faq.html)." fi fi echores "$_inttypes"