diff options
author | Diego Biurrun <diego@biurrun.de> | 2005-05-16 22:49:28 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-05-16 22:49:28 +0000 |
commit | dbe676d378cd2ff79cfa52ba9c7e5beaed85acd1 (patch) | |
tree | 5e31bb39ca146c8f5101ec72e50cbe8b52bb0717 | |
parent | 220a6f401dfe404ae43743935b529c84c4790d0e (diff) | |
download | ffmpeg-dbe676d378cd2ff79cfa52ba9c7e5beaed85acd1.tar.gz |
Cygwin now has a native inttypes.h that works better than the custom one.
Originally committed as revision 4251 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | cygwin_inttypes.h | 29 |
2 files changed, 0 insertions, 33 deletions
@@ -314,10 +314,6 @@ ffserver="no" extralibs="" cygwin="yes" EXESUF=".exe" -test -f /usr/include/inttypes.h || \ -test -f /usr/local/include/inttypes.h || \ -echo "Missing inttypes.h, please copy cygwin_inttypes.h to" \ - "/usr/local/include/inttypes.h !!!" ;; Linux) LDFLAGS="$LDFLAGS -rdynamic" diff --git a/cygwin_inttypes.h b/cygwin_inttypes.h deleted file mode 100644 index 0c17b1d1d1..0000000000 --- a/cygwin_inttypes.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef _CYGWIN_INTTYPES_H -#define _CYGWIN_INTTYPES_H -/* /usr/include/inttypes.h for CYGWIN - * Copyleft 2001-2002 by Felix Buenemann - * <atmosfear at users.sourceforge.net> - * - * Should be installed into /usr/include - * as inttypes.h - */ -#if 0 -typedef char * caddr_t; -typedef char int8_t; -typedef unsigned char u_int8_t; -typedef short int16_t; -typedef unsigned short u_int16_t; -typedef int int32_t; -typedef unsigned int u_int32_t; -typedef long long int64_t; -typedef unsigned long long u_int64_t; -typedef int32_t register_t; -#else -#include <sys/types.h> -#endif /* 0/1 */ -typedef u_int8_t uint8_t; -typedef u_int16_t uint16_t; -typedef u_int32_t uint32_t; -typedef u_int64_t uint64_t; -#endif /* _CYGWIN_INTTYPES_H */ - |