Changeset de6439f8cbe9b2d4ad4e73e5fbc2863708442929
- Timestamp:
- 03/12/06 22:22:34
(2 years ago)
- Author:
- Christophe Mutricy <xtophe@videolan.org>
- git-committer:
- Christophe Mutricy <xtophe@videolan.org> 1142198554 +0000
- git-parent:
[e9c4ad96d9ce42a11969337c207b92ff2c702a7c]
- git-author:
- Christophe Mutricy <xtophe@videolan.org> 1142198554 +0000
- Message:
Add libshout on win32
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r948ec4c |
rde6439f |
|
| 156 | 156 | |
|---|
| 157 | 157 | all: .iconv .intl .freetype .fribidi .zlib \ |
|---|
| 158 | | .a52 .mpeg2 .id3tag .mad .ogg .vorbis .vorbisenc .theora \ |
|---|
| | 158 | .a52 .mpeg2 .id3tag .mad .ogg .vorbis .shout .vorbisenc .theora \ |
|---|
| 159 | 159 | .FLAC .speex .faad .faac .lame .ebml .matroska .ffmpeg .dvdcss \ |
|---|
| 160 | 160 | .live .goom2k4 .caca .mod .x264 .xml .twolame \ |
|---|
| … | … | |
| 683 | 683 | libshout: libshout-$(SHOUT_VERSION).tar.gz |
|---|
| 684 | 684 | $(EXTRACT_GZ) |
|---|
| 685 | | |
|---|
| | 685 | ifdef HAVE_WIN32 |
|---|
| | 686 | patch -p0 < Patches/libshout-win32.patch |
|---|
| | 687 | endif |
|---|
| | 688 | |
|---|
| 686 | 689 | .shout: libshout .theora .ogg |
|---|
| 687 | | (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install) |
|---|
| | 690 | (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && cd include make && make install && cd ../src && make && make install ) |
|---|
| 688 | 691 | $(INSTALL_NAME) |
|---|
| 689 | 692 | touch $@ |
|---|