Changeset 73ac7f80bd6fa79c59c509f0efaadddcece42316
- 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
| rf1254d9 |
r73ac7f8 |
|
| 142 | 142 | ifdef HAVE_WINCE |
|---|
| 143 | 143 | |
|---|
| 144 | | all: .dvbpsi .zlib .ffmpeg |
|---|
| | 144 | all: .dvbpsi .zlib .ffmpeg .ogg .tremor |
|---|
| 145 | 145 | else |
|---|
| 146 | 146 | |
|---|
| … | … | |
| 544 | 544 | $(EXTRACT_GZ) |
|---|
| 545 | 545 | patch -p 0 < Patches/ogg.patch |
|---|
| 546 | | #ifdef HAVE_WIN32 |
|---|
| 547 | | # (cd libogg;patch -p 0 <../Patches/libogg-1.1-win32.patch) |
|---|
| 548 | | #endiF |
|---|
| | 546 | ifdef HAVE_WINCE |
|---|
| | 547 | patch -p 0 < Patches/libogg-wince.patch |
|---|
| | 548 | endif |
|---|
| 549 | 549 | |
|---|
| 550 | 550 | .ogg: libogg |
|---|
| 551 | | (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install) |
|---|
| | 551 | (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make install) |
|---|
| 552 | 552 | $(INSTALL_NAME) |
|---|
| 553 | 553 | touch $@ |
|---|
| … | … | |
| 588 | 588 | CLEAN_PKG += libvorbis |
|---|
| 589 | 589 | DISTCLEAN_PKG += libvorbis-$(VORBIS_VERSION).tar.gz |
|---|
| | 590 | |
|---|
| | 591 | # *************************************************************************** |
|---|
| | 592 | # tremor |
|---|
| | 593 | # *************************************************************************** |
|---|
| | 594 | |
|---|
| | 595 | ifdef SVN |
|---|
| | 596 | tremor: |
|---|
| | 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) |
|---|
| | 600 | else |
|---|
| | 601 | tremor-$(TREMOR_VERSION).tar.bz2: |
|---|
| | 602 | $(WGET) $(TREMOR_URL) |
|---|
| | 603 | |
|---|
| | 604 | tremor: tremor-$(TREMOR_VERSION).tar.bz2 |
|---|
| | 605 | $(EXTRACT_BZ2) |
|---|
| | 606 | endif |
|---|
| | 607 | |
|---|
| | 608 | .tremor: tremor .ogg |
|---|
| | 609 | (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-shared && make && make install) |
|---|
| | 610 | $(INSTALL_NAME) |
|---|
| | 611 | touch $@ |
|---|
| | 612 | |
|---|
| | 613 | CLEAN_FILE += .tremor |
|---|
| | 614 | CLEAN_PKG += tremor |
|---|
| | 615 | DISTCLEAN_PKG += tremor-$(TREMOR_VERSION).tar.gz |
|---|
| 590 | 616 | |
|---|
| 591 | 617 | # *************************************************************************** |
|---|