Changeset a6ad4f5707dc9648a6c098bfbae99448f122022f

Show
Ignore:
Timestamp:
11/01/05 22:47:49 (3 years ago)
Author:
Gildas Bazin <gbazin@videolan.org>
git-committer:
Gildas Bazin <gbazin@videolan.org> 1130881669 +0000
git-parent:

[b98d05ef81cf2cc516cbca425a78c193b1d1f433]

git-author:
Gildas Bazin <gbazin@videolan.org> 1130881669 +0000
Message:

* Patches/ffmpeg-cvs.patch: lrintf() detection work-around for win32.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • extras/contrib/src/Patches/ffmpeg-cvs.patch

    r0a5027d ra6ad4f5  
    1515 ifeq ($(CONFIG_WIN32),yes) 
    1616    install $(INSTALLSTRIP) -m 755 $(SPPLIBNAME) "$(prefix)" 
     17Index: libavutil/common.h 
     18=================================================================== 
     19RCS file: /cvsroot/ffmpeg/ffmpeg/libavutil/common.h,v 
     20retrieving revision 1.153 
     21diff -u -r1.153 common.h 
     22--- libavutil/common.h  19 Sep 2005 23:26:47 -0000  1.153 
     23+++ libavutil/common.h  1 Nov 2005 21:40:31 -0000 
     24@@ -543,7 +543,7 @@ 
     25     }\ 
     26 } 
     27  
     28-#ifndef HAVE_LRINTF 
     29+#if !defined(HAVE_LRINTF) && !defined(__MINGW32__) 
     30 /* XXX: add ISOC specific test to avoid specific BSD testing. */ 
     31 /* better than nothing implementation. */ 
     32 /* btw, rintf() is existing on fbsd too -- alex */