Changeset 73ac7f80bd6fa79c59c509f0efaadddcece42316

Show
Ignore:
Timestamp:
11/22/05 23:29:00 (3 years ago)
Author:
Gildas Bazin <gbazin@videolan.org>
git-committer:
Gildas Bazin <gbazin@videolan.org> 1132698540 +0000
git-parent:

[f1254d96794e5de004978a47f8ff0668f598847b]

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

* extras/contrib/src/Makefile, extras/contrib/src/Patches/libogg-wince.patch,tremor.patch: added libogg and tremor support to wince contrib.

Files:

Legend:

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

    rf1254d9 r73ac7f8  
    142142   ifdef HAVE_WINCE 
    143143 
    144    all: .dvbpsi .zlib .ffmpeg 
     144   all: .dvbpsi .zlib .ffmpeg .ogg .tremor 
    145145   else 
    146146 
     
    544544    $(EXTRACT_GZ) 
    545545    patch -p 0 < Patches/ogg.patch 
    546 #ifdef HAVE_WIN32 
    547 #   (cd libogg;patch -p 0 <../Patches/libogg-1.1-win32.patch) 
    548 #endiF 
     546ifdef HAVE_WINCE 
     547    patch -p 0 < Patches/libogg-wince.patch 
     548endif 
    549549 
    550550.ogg: libogg 
    551     (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install) 
     551    (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make install) 
    552552    $(INSTALL_NAME) 
    553553    touch $@ 
     
    588588CLEAN_PKG += libvorbis 
    589589DISTCLEAN_PKG += libvorbis-$(VORBIS_VERSION).tar.gz 
     590 
     591# *************************************************************************** 
     592# tremor 
     593# *************************************************************************** 
     594 
     595ifdef SVN 
     596tremor:  
     597    $(SVN) co http://svn.xiph.org/trunk/Tremor tremor 
     598    (cd $@ && patch -p0 < ../Patches/tremor.patch) 
     599    (cd $@; rm -f ogg.h && echo "#include <ogg/ogg.h>" > ogg.h && rm -f os_types.h && echo "#include <ogg/os_types.h>" > os_types.h && ./autogen.sh) 
     600else 
     601tremor-$(TREMOR_VERSION).tar.bz2: 
     602    $(WGET) $(TREMOR_URL) 
     603 
     604tremor: tremor-$(TREMOR_VERSION).tar.bz2 
     605    $(EXTRACT_BZ2) 
     606endif 
     607 
     608.tremor: tremor .ogg 
     609    (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-shared && make && make install) 
     610    $(INSTALL_NAME) 
     611    touch $@ 
     612 
     613CLEAN_FILE += .tremor 
     614CLEAN_PKG += tremor 
     615DISTCLEAN_PKG += tremor-$(TREMOR_VERSION).tar.gz 
    590616 
    591617# ***************************************************************************