From ba1ead6fe023ceb9590d2f59c8b2bf1a2917d4e9 Mon Sep 17 00:00:00 2001 From: diego Date: Fri, 18 Aug 2006 14:44:09 +0000 Subject: [PATCH] Also add uint_fast64_t to config.h when "int_fastXY_t in inttypes.h" test failed, fixes compilation on Sparc. patch by Zuxy Meng, zuxy.meng $$@$$ gmail $$dot$$ com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19438 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 9e4e7e1271..1616e006d3 100755 --- a/configure +++ b/configure @@ -2786,7 +2786,8 @@ else typedef signed int int_fast32_t; typedef unsigned char uint_fast8_t; typedef unsigned int uint_fast16_t; - typedef unsigned int uint_fast32_t;' + typedef unsigned int uint_fast32_t; + typedef unsigned long long uint_fast64_t;' fi echores "$_fast_inttypes"