From 02c93f7b98d7634ad0c787675648b6d689b9837c Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 4 Oct 2008 11:47:00 +0000 Subject: [PATCH] Do not duplicate likely/unlikely #defines from libmpeg2/libavcodec in config.h. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27707 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 7 ------- 1 file changed, 7 deletions(-) diff --git a/configure b/configure index 45dcfaf464..fa1d595065 100755 --- a/configure +++ b/configure @@ -8033,13 +8033,6 @@ $_def_restrict_keyword /* __builtin_expect branch prediction hint */ $_def_builtin_expect -#ifdef HAVE_BUILTIN_EXPECT -#define likely(x) __builtin_expect ((x) != 0, 1) -#define unlikely(x) __builtin_expect ((x) != 0, 0) -#else -#define likely(x) (x) -#define unlikely(x) (x) -#endif /* attribute(used) as needed by some compilers */ #if (__GNUC__ * 100 + __GNUC_MINOR__ >= 300)