Changeset 08b3fcc622fc45784579fd505cac5d6481aff620

Show
Ignore:
Timestamp:
07/06/06 15:25:23 (2 years ago)
Author:
Felix Paul Kühne <fkuehne@videolan.org>
git-committer:
Felix Paul Kühne <fkuehne@videolan.org> 1149686723 +0000
git-parent:

[9b2b219e047a24874724680d2e2fda79dc270e6c]

git-author:
Felix Paul Kühne <fkuehne@videolan.org> 1149686723 +0000
Message:

* ugly compilation fix for ffmpeg on PPC-GCC 4.0.0

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • extras/contrib/src/Makefile

    r8ecff20 r08b3fcc  
    118118ifdef HAVE_DARWIN_OS 
    119119X264CONF += --enable-pic 
     120ifneq ($(HOST),i686-apple-darwin8) 
     121FFMPEG_CFLAGS += -DHAVE_LRINTF 
     122endif 
    120123endif 
    121124 
     
    916919.ffmpeg: ffmpeg .faac .lame 
    917920endif 
    918     (cd $<; $(HOSTCC) ./configure $(FFMPEGCONF) --prefix=$(PREFIX) --extra-cflags="$(CFLAGS) -DRUNTIME_CPUDETECT" --extra-ldflags="$(LDFLAGS)" --enable-gpl --enable-pp --disable-vhook --disable-ffserver --disable-network --enable-a52 --disable-ffplay && make install-libs install-headers) 
     921    (cd $<; $(HOSTCC) ./configure $(FFMPEGCONF) --prefix=$(PREFIX) --extra-cflags="$(CFLAGS) $(FFMPEG_CFLAGS) -DRUNTIME_CPUDETECT" --extra-ldflags="$(LDFLAGS)" --enable-gpl --enable-pp --disable-vhook --disable-ffserver --disable-network --enable-a52 --disable-ffplay && make install-libs install-headers) 
    919922    touch $@ 
    920923