root/extras/contrib/src/Makefile

Revision 6b7d5713b280eb9e6f199eae989e61b5054fb3cc, 76.5 kB (checked in by Derk-Jan Hartman <hartman@videolan.org>, 2 months ago)

contrib: Fix libmatroska ebml crash

This fixes the matroska crash in at least our Windows and Linux version,
until a new libebml is released. Laurent Aimar had mostly worked around these in
[ce718de21f000a5dda416960a2b7dffdacabd9a2] but FindNextElement? was still vulnerable in

Tested on a matroska download with gaps. Many thanks to Laurent

  • Property mode set to 100644
Line 
1 #***************************************************************************
2 # src/Makefile : Dearchive and compile all files necessary
3 # ***************************************************************************
4 # Copyright (C) 2003 - 2008 the VideoLAN team
5 # $Id$
6 #
7 # Authors: Christophe Massiot <massiot@via.ecp.fr>
8 #          Derk-Jan Hartman <hartman at videolan dot org>
9 #          Eric Petit <titer@m0k.org>
10 #          Felix Paul Kühne <fkuehne@videolan.org>
11 #          Christophe Mutricy <xtophe AT xtelevision.com>
12 #          Gildas Bazin <gbazin at videolan dot org>
13 #          Damien Fouilleul <damienf at videolan dot org>
14 #          Jean-Baptiste Kempf <jb at videolan dot org>
15 #
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
20 #
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 #
26 # You should have received a copy of the GNU General Public License
27 # along with this program; if not, write to the Free Software
28 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
29 # ***************************************************************************
30
31 include ../config.mak
32 include ./packages.mak
33
34 # ***************************************************************************
35 # Set a clean environment
36 # ***************************************************************************
37
38 export PATH := $(PREFIX)/bin:$(EXTRA_PATH):$(PATH)
39 export PKG_CONFIG_PATH
40 export PKG_CONFIG_LIBDIR = $(PREFIX)/lib/pkgconfig
41 export MACOSX_DEPLOYMENT_TARGET = $(SDK_TARGET)
42 export LIBRARY_PATH := $(PREFIX)/lib:$(LIBRARY_PATH)
43 export CFLAGS = -I$(PREFIX)/include $(EXTRA_CFLAGS) $(EXTRA_CPPFLAGS)
44 export CPPFLAGS = -I$(PREFIX)/include $(EXTRA_CFLAGS) $(EXTRA_CPPFLAGS)
45 export CXXFLAGS = -I$(PREFIX)/include $(EXTRA_CFLAGS) $(EXTRA_CPPFLAGS)
46 export LDFLAGS = -L$(PREFIX)/lib $(EXTRA_LDFLAGS)
47
48 # ***************************************************************************
49 # Cross compilation variables
50 # We'll usually use --host=<platform>, except for a few libraries which
51 # don't handle it (gotta set CC/CXX/etc), and obviously FFmpeg has its own
52 # way of doing it... ;)
53 # ***************************************************************************
54
55 ifneq ($(CC),)
56 HOSTCC+= CC="$(CC)"
57 endif
58 ifneq ($(CXX),)
59 HOSTCC+= CXX="$(CXX)"
60 endif
61 ifneq ($(LD),)
62 HOSTCC+= LD="$(LD)"
63 endif
64 ifneq ($(RANLIB),)
65 HOSTCC+= RANLIB="$(RANLIB)"
66 endif
67 ifneq ($(AR),)
68 HOSTCC+= AR="$(AR)"
69 endif
70 ifneq ($(STRIP),)
71 HOSTCC+= STRIP="$(STRIP)"
72 endif
73
74
75 # Define ranlib on non-cross compilation setups
76 ifeq ($(RANLIB),)
77 RANLIB=ranlib
78 endif
79
80 # For libebml/libmatroska. Grrr.
81 ifneq ($(AR),)
82 HOSTCC2=$(HOSTCC) AR="$(AR) rcvu"
83 else
84 HOSTCC2=$(HOSTCC)
85 endif
86
87 # For ffmpeg if not cross compiling
88 ifneq ($(CC),)
89   FFMPEGCONF=--cc="$(CC)"
90 endif
91
92 #
93 # cross compiling
94 #
95 #This should be inside the if block but some config scripts are buggy
96 HOSTCONF=--target=$(HOST) --host=$(HOST) --build=$(BUILD) --program-prefix=""
97 ifneq ($(BUILD),$(HOST))
98     #
99     # Compiling for MinGW under Cygwin could be deemed as cross compiling
100     # unfortunately there isn't a complete separate GCC toolchain for MinGW under Cygwin
101     #
102     ifndef HAVE_CYGWIN
103         # We are REALLY cross compiling
104         FFMPEGCONF=--cross-prefix=$(HOST)- --enable-cross-compile
105         X264CONF=--host=$(HOST)
106         PTHREADSCONF="CROSS=$(HOST)-"
107     else
108         # We are compiling for MinGW on Cygwin
109         PTHREADSCONF=$(HOSTCC)
110     endif
111 endif
112
113 #
114 # Special target-dependant options
115 #
116 ifdef HAVE_WIN32
117 HOSTCONF+= --without-pic --disable-shared --enable-msw --disable-dependency-tracking
118 FFMPEGCONF+= --target-os=mingw32 --enable-memalign-hack --cpu=i686 --arch=i686 --disable-debug
119 endif
120
121 ifdef HAVE_WINCE
122 HOSTCONF+= --without-pic --disable-shared
123 FFMPEGCONF+= --enable-mingwce --cpu=armv4l --disable-debug --disable-encoders --disable-muxers --disable-mpegaudio-hp --disable-decoder=snow --disable-decoder=vc9 --disable-decoder=wmv3 --disable-decoder=vorbis --disable-decoder=dvdsub --disable-decoder=dvbsub --disable-protocols
124 endif
125
126 ifdef HAVE_UCLIBC
127 ifdef HAVE_BIGENDIAN
128 FFMPEGCONF+= --arch=armeb --enable-armv5te --enable-iwmmxt
129 else
130 FFMPEGCONF+= --arch=armv4l
131 endif
132 FFMPEGCONF+= --enable-small --disable-debug --disable-mpegaudio-hp
133 FFMPEG_CFLAGS += -DHAVE_LRINTF --std=c99
134 else
135 FFMPEGCONF+= --enable-libmp3lame --enable-libfaac --enable-swscale
136 endif
137
138 ifdef HAVE_BEOS
139 FFMPEGCONF+= --cpu=x86 --disable-debug --disable-audio-beos
140 endif
141
142 ifdef HAVE_DARWIN_OS_ON_INTEL
143 FFMPEGCONF += --enable-memalign-hack --cpu=pentium-m
144 endif
145
146 ifdef HAVE_DARWIN_OS
147 X264CONF += --enable-pic
148 ifdef HAVE_DARWIN_OS_ON_INTEL
149 FFMPEG_CFLAGS += -DHAVE_LRINTF
150 endif
151 endif
152
153 ifdef HAVE_AMR
154 FFMPEGCONF+= --enable-libamr-nb --enable-libamr-wb --enable-nonfree
155 endif
156
157 DATE=`date +%Y-%m-%d`
158
159 # ***************************************************************************
160 # Standard rules
161 # ***************************************************************************
162 # Generated by ./bootstrap from default configuration in src/Distributions
163 #
164 include ../distro.mak
165
166 FORCE:
167
168 # ***************************************************************************
169 # Useful macros
170 # ***************************************************************************
171
172 define EXTRACT_GZ
173         rm -rf $@ || true
174         gunzip -c $< | tar xf - --exclude='[*?:<>\|]'
175         mv $(patsubst %.tar.gz,%,$(patsubst %.tgz,%,$(notdir $<))) $@ || true
176         touch $@
177 endef
178
179 define EXTRACT_BZ2
180         rm -rf $@ || true
181         bunzip2 -c $< | tar xf - --exclude='[*?:<>\|]'
182         mv $(patsubst %.tar.bz2,%,$(notdir $<)) $@ || true
183         touch $@
184 endef
185
186 define EXTRACT_ZIP
187         rm -rf $@ || true
188         unzip $<
189         mv $(patsubst %.zip,%,$(notdir $<)) $@ || true
190         touch $@
191 endef
192
193 ### Darwin-specific ###
194 # These macros prepare the dynamic libraries for inclusion in the Mac OS X
195 # bundle. For instance if you're building a library named libtoto.dylib,
196 # which depends on the contrib library libtata.dylib, you should have the
197 # following entry :
198 # .toto: toto_directory .tata
199 #       cd $< ; ./configure --prefix=$(PREFIX)
200 #       $(MAKE) -C $<
201 #       $(MAKE) -C $< install
202 #       $(INSTALL_NAME)
203 #       touch $@
204
205 ifeq ($(HOST),i586-pc-beos)
206 # We test if the file actually exists, as sometimes (but not always)
207 # libtool won't accept to build the shared library
208 define INSTALL_NAME
209         if test -f $(PREFIX)/lib/lib$(patsubst .%,%,$@).so ; then \
210                 mkdir -p $(PREFIX)/vlc-lib ; \
211                 cp $(PREFIX)/lib/lib$(patsubst .%,%,$@).so \
212                   $(PREFIX)/vlc-lib/ ; \
213         fi
214 endef
215 endif
216
217 # ***************************************************************************
218 # perl
219 # ***************************************************************************
220
221 ifeq ($(BUILD),i586-pc-beos)
222 perl-$(PERL_VERSION).tar.gz:
223         $(WGET) $(PERL_URL)
224
225 perl: perl-$(PERL_VERSION).tar.gz
226         $(EXTRACT_GZ)
227         sed -i.orig 's%prefix="/boot/home/config"%prefix="$(PREFIX)"%'  perl/hints/beos.sh
228
229 .perl: perl
230         (cd $<; ./Configure -d -e && make && make install && ln -sf perl5/$(PERL_VERSION)/BePC-beos/CORE/libperl.so $(PREFIX)/lib/libperl.so)
231         touch $@
232
233 CLEAN_FILE += .perl
234 CLEAN_PKG += perl
235 DISTCLEAN_PKG += perl-$(PERL_VERSION).tar.gz
236 endif
237
238 # ***************************************************************************
239 # autoconf
240 # ***************************************************************************
241
242 autoconf-$(AUTOCONF_VERSION).tar.bz2:
243         $(WGET) $(AUTOCONF_URL)
244
245 autoconf: autoconf-$(AUTOCONF_VERSION).tar.bz2
246         $(EXTRACT_BZ2)
247
248 .autoconf: autoconf
249         (cd $<; ./configure --prefix=$(PREFIX) && make && make install)
250         touch $@
251
252 CLEAN_FILE += .autoconf
253 CLEAN_PKG += autoconf
254 DISTCLEAN_PKG += autoconf-$(AUTOCONF_VERSION).tar.bz2
255
256 # ***************************************************************************
257 # gnumake
258 # ***************************************************************************
259
260 make-$(GNUMAKE_VERSION).tar.bz2:
261         $(WGET) $(GNUMAKE_URL)
262
263 gnumake: make-$(GNUMAKE_VERSION).tar.bz2
264         $(EXTRACT_BZ2)
265
266 .gnumake: gnumake
267 ifdef HAVE_DARWIN_OS
268 ifndef HAVE_DARWIN_9
269         (cd $<; ./configure --prefix=$(PREFIX) && make && make install)
270 endif
271 endif
272         touch $@
273
274 CLEAN_FILE += .gnumake
275 CLEAN_PKG += gnumake
276 DISTCLEAN_PKG += make-$(GNUMAKE_VERSION).tar.bz2
277
278 # ***************************************************************************
279 # CMake
280 # ***************************************************************************
281 cmake-$(CMAKE_VERSION).tar.gz:
282         $(WGET) $(CMAKE_URL)
283
284 cmake: cmake-$(CMAKE_VERSION).tar.gz
285         $(EXTRACT_GZ)
286        
287 #cmake:
288 #       cvs -d :pserver:anonymous:cmake@www.cmake.org:/cvsroot/CMake co -d cmake CMake
289
290 .cmake: cmake
291         (cd $<; ./configure --prefix=$(PREFIX) && make && make install)
292         touch $@
293
294 CLEAN_FILE += .cmake
295 CLEAN_PKG += cmake
296
297 # ***************************************************************************
298 # libtool
299 # ***************************************************************************
300
301 ifdef HAVE_DARWIN_OS
302 libtool-$(LIBTOOL_VERSION).tar.gz:
303         $(WGET) $(LIBTOOL_URL)
304
305 libtool: libtool-$(LIBTOOL_VERSION).tar.gz
306         $(EXTRACT_GZ)
307
308 .libtool: libtool
309         (cd $<; ./configure --prefix=$(PREFIX) && make && make install)
310         ln -sf libtool $(PREFIX)/bin/glibtool
311         ln -sf libtoolize $(PREFIX)/bin/glibtoolize
312         touch $@
313
314 CLEAN_PKG += libtool
315 DISTCLEAN_PKG += libtool-$(LIBTOOL_VERSION).tar.gz
316 CLEAN_FILE += .libtool
317
318 endif
319
320 ifeq ($(BUILD),i586-pc-beos)
321 libtool-$(LIBTOOL_VERSION).tar.gz:
322         $(WGET) $(LIBTOOL_URL)
323
324 libtool: libtool-$(LIBTOOL_VERSION).tar.gz
325         $(EXTRACT_GZ)
326
327 .libtool: libtool
328         (cd $<; ./configure --prefix=$(PREFIX) && make && make install)
329         touch $@
330
331 CLEAN_PKG += libtool
332 DISTCLEAN_PKG += libtool-$(LIBTOOL_VERSION).tar.gz
333 CLEAN_FILE += .libtool
334
335 endif
336
337 # ***************************************************************************
338 # automake
339 # ***************************************************************************
340
341 automake-$(AUTOMAKE_VERSION).tar.gz:
342         $(WGET) $(AUTOMAKE_URL)
343
344 automake: automake-$(AUTOMAKE_VERSION).tar.gz
345         $(EXTRACT_GZ)
346
347 .automake: automake
348         (cd $<; ./configure --prefix=$(PREFIX) && make && make install)
349         touch $@
350
351 CLEAN_FILE += .automake
352 CLEAN_PKG += automake
353 DISTCLEAN_PKG += automake-$(AUTOMAKE_VERSION).tar.gz
354
355 # ***************************************************************************
356 # pkgconfig
357 # ***************************************************************************
358
359 pkg-config-$(PKGCFG_VERSION).tar.gz:
360         $(WGET) $(PKGCFG_URL)
361
362 pkgconfig: pkg-config-$(PKGCFG_VERSION).tar.gz
363         $(EXTRACT_GZ)
364         patch -d pkgconfig/glib-1.2.8 -p 1 < Patches/glib.patch
365         patch -d pkgconfig -p0 < Patches/pkgcfg.patch
366         (cd $@; autoconf)
367
368 .pkgcfg: pkgconfig
369         (cd pkgconfig; ./configure --prefix=$(PREFIX) --disable-shared --enable-static && make && make install)
370         touch $@
371
372 CLEAN_FILE += .pkgcfg
373 CLEAN_PKG += pkgconfig
374 DISTCLEAN_PKG += pkg-config-$(PKGCFG_VERSION).tar.gz
375
376 # ***************************************************************************
377 # gettext
378 # ***************************************************************************
379
380 gettext-$(GETTEXT_VERSION).tar.gz:
381         $(WGET) $(GETTEXT_URL)
382
383 gettext: gettext-$(GETTEXT_VERSION).tar.gz
384         $(EXTRACT_GZ)
385 ifdef HAVE_WIN32
386         patch -p0 < Patches/gettext-win32.patch
387 endif
388 ifdef HAVE_DARWIN_OS
389         patch -p0 < Patches/gettext-macosx.patch
390 endif
391
392 .intl: gettext .iconv
393 ifdef HAVE_WIN32
394         ( cd $< && $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-relocatable --with-iconv-prefix=$(PREFIX) --disable-java --disable-native-java)
395 else
396         ( cd $< && $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-java --disable-native-java --without-emacs)
397 endif
398 ifeq ($(BUILD),i586-pc-beos)
399 # The ugliest kludge ever - so libtool correctly links shared libraries
400 # on BeOS. Sorry, I just can't figure out how libtool works
401         ( cd $< && for f in `find . -name libtool`; do  sed -e 's/ -shared / -nostart /' -e 's/^predep_objects.*/predep_objects=""/' -i  $$f; chmod +x $$f; done )
402 endif
403 ifneq ($(HOST),$(BUILD))
404   ifndef HAVE_CYGWIN
405     # We'll use the installed gettext and only need to cross-compile libintl, also build autopoint and gettextsize tools need for VLC bootstrap
406         ( cd $< && make -C gettext-runtime/intl && patch -p1 < ../Patches/libintl.patch && make -C gettext-runtime/intl install && make -C gettext-tools/misc install )
407   else
408     # We are compiling for MinGW on Cygwin -- build the full current gettext
409         ( cd $< && make && patch -p1 < ../Patches/libintl.patch && make install )
410   endif
411 else
412 # Build and install the whole gettext
413         ( cd $< && make && patch -p1 < ../Patches/libintl.patch && make install )
414 endif
415 # Work around another non-sense of autoconf.
416 ifdef HAVE_WIN32
417         (cd ../include; sed -i.orig '311 c #if 0' libintl.h)
418 endif
419         $(INSTALL_NAME)
420         touch $@
421
422 CLEAN_FILE += .intl
423 CLEAN_PKG += gettext
424 DISTCLEAN_PKG += gettext-$(GETTEXT_VERSION).tar.gz
425
426 # ***************************************************************************
427 # libiconv
428 # ***************************************************************************
429
430 libiconv-$(LIBICONV_VERSION).tar.gz:
431         $(WGET) $(LIBICONV_URL)
432
433 libiconv: libiconv-$(LIBICONV_VERSION).tar.gz
434         $(EXTRACT_GZ)
435 ifdef HAVE_DARWIN_OS
436         patch -p0 < Patches/libiconv.patch
437 endif
438         patch -p0 < Patches/libiconv-autoconf-uclibc.patch
439
440 ifdef HAVE_DARWIN_OS
441 .iconv:
442         touch $@
443 else
444 .iconv: libiconv
445         (cd libiconv; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-nls && make && make install)
446         $(INSTALL_NAME)
447         touch $@
448 endif
449
450 CLEAN_FILE += .iconv
451 CLEAN_PKG += libiconv
452 DISTCLEAN_PKG += libiconv-$(LIBICONV_VERSION).tar.gz
453
454 # ***************************************************************************
455 # fontconfig
456 # ***************************************************************************
457
458 fontconfig-$(FONTCONFIG_VERSION).tar.gz:
459         $(WGET) $(FONTCONFIG_URL)
460
461 fontconfig: fontconfig-$(FONTCONFIG_VERSION).tar.gz Patches/fontconfig.patch
462         $(EXTRACT_GZ)
463         patch -p0 < Patches/fontconfig.patch
464         patch -p0 < Patches/fontconfig-nodocs.patch
465         (cd $@; autoreconf)
466
467 .fontconfig: fontconfig .xml .freetype
468 ifdef HAVE_WIN32
469   ifdef HAVE_CYGWIN
470         (cd $<; LIBXML2_CFLAGS=`$(PREFIX)/bin/xml2-config --cflags` ./configure --target=$(HOST) --disable-pic --disable-shared --disable-docs --with-cache-dir=WINDOWSTEMPDIR --with-arch=i686 --with-default-fonts=C:\\windows\fonts --with-add-fonts=C:\\winnt\fonts --prefix=$(PREFIX) --with-freetype-config=$(PREFIX)/bin/freetype-config --enable-libxml2 && make && make install)
471   else
472         (cd $<; $(HOSTCC) LIBXML2_CFLAGS=`$(PREFIX)/bin/xml2-config --cflags` ./configure $(HOSTCONF) --with-cache-dir=WINDOWSTEMPDIR --with-arch=i686 --with-default-fonts=C:\\windows\fonts --with-add-fonts=C:\\winnt\fonts --prefix=$(PREFIX) --with-freetype-config=$(PREFIX)/bin/freetype-config --enable-libxml2 --disable-docs && make && make install)
473   endif
474 else
475   ifdef HAVE_DARWIN_OS
476         (cd $<; $(HOSTCC) LIBXML2_CFLAGS=`xml2-config --cflags` LIBXML2_LIBS=`xml2-config --libs` ./configure $(HOSTCONF) --with-cache-dir=/usr/X11/var/cache/fontconfig --with-confdir=/usr/X11/lib/X11/fonts --with-default-fonts=/System/Library/Fonts --with-add-fonts=/Library/Fonts,~/Library/Fonts --prefix=$(PREFIX) --with-freetype-config=$(PREFIX)/bin/freetype-config --enable-libxml2 --disable-docs && make && make install-exec && (cd fontconfig ; make install-data) && cp fontconfig.pc $(PKG_CONFIG_LIBDIR))
477   else
478         (cd $<; $(HOSTCC) LIBXML2_CFLAGS=`$(PREFIX)/bin/xml2-config --cflags` ./configure $(HOSTCONF) --prefix=$(PREFIX) --with-freetype-config=$(PREFIX)/bin/freetype-config --enable-libxml2 --disable-docs && make && make install)
479   endif
480 endif
481         $(INSTALL_NAME)
482         touch $@
483
484 CLEAN_FILE += .fontconfig
485 CLEAN_PKG += fontconfig
486 DISTCLEAN_PKG += fontconfig-$(FONTCONFIG_VERSION).tar.gz
487
488 # ***************************************************************************
489 # freetype2
490 # ***************************************************************************
491
492 freetype-$(FREETYPE2_VERSION).tar.gz:
493         $(WGET) $(FREETYPE2_URL)
494
495 freetype2: freetype-$(FREETYPE2_VERSION).tar.gz
496         $(EXTRACT_GZ)
497
498 .freetype: freetype2
499 ifdef HAVE_CYGWIN
500         (cd $<; ./configure --target=$(HOST) --disable-pic --disable-shared --prefix=$(PREFIX) && make && make install)
501 else
502         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install)
503 endif
504         $(INSTALL_NAME)
505         touch $@
506
507 CLEAN_FILE += .freetype
508 CLEAN_PKG += freetype2
509 DISTCLEAN_PKG += freetype-$(FREETYPE2_VERSION).tar.gz
510
511 # ***************************************************************************
512 # fribidi
513 # ***************************************************************************
514
515 fribidi-$(FRIBIDI_VERSION).tar.gz:
516         $(WGET) $(FRIBIDI_URL)
517
518 fribidi: fribidi-$(FRIBIDI_VERSION).tar.gz
519         $(EXTRACT_GZ)
520         patch -p0 < Patches/fribidi.patch
521         ( cd $@; rm -f configure; ./bootstrap)
522
523 .fribidi: fribidi .iconv
524         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX)  && make && make install)
525         $(INSTALL_NAME)
526         touch $@
527
528 CLEAN_FILE += .fribidi
529 CLEAN_PKG += fribidi
530 DISTCLEAN_PKG += fribidi-$(FRIBIDI_VERSION).tar.gz
531
532 # ***************************************************************************
533 # liba52
534 # ***************************************************************************
535
536 a52dec-$(A52DEC_VERSION).tar.gz:
537         $(WGET) $(A52DEC_URL)
538
539 a52dec: a52dec-$(A52DEC_VERSION).tar.gz
540         $(EXTRACT_GZ)
541
542 .a52: a52dec
543         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && cd liba52 && make && make install && cd ../include && make && make install)
544         touch $@
545
546 CLEAN_FILE += .a52
547 CLEAN_PKG += a52dec
548 DISTCLEAN_PKG += a52dec-$(A52DEC_VERSION).tar.gz
549
550 # ***************************************************************************
551 # mpeg2dec
552 # ***************************************************************************
553
554 #mpeg2dec:
555 #       @echo "*** Please press return here : ***"
556 #       cvs -d $(MPEG2DEC_CVSROOT) login
557 #       cvs -d $(MPEG2DEC_CVSROOT) co mpeg2dec
558 #       (cd $@; ./bootstrap)
559
560 libmpeg2-$(LIBMPEG2_VERSION).tar.gz:
561         $(WGET) $(LIBMPEG2_URL)
562
563 # It is easier to use bootstrapped versions...
564 #mpeg2dec-$(MPEG2DEC_VERSION).tar.gz:
565 #       $(WGET) $(MPEG2DEC_SNAPSHOT)
566 #       mv mpeg2dec-$(MPEG2DEC_DATE).tar.gz $@
567
568 libmpeg2: libmpeg2-$(LIBMPEG2_VERSION).tar.gz
569         $(EXTRACT_GZ)
570
571 .mpeg2: libmpeg2
572         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --without-x --disable-sdl && cd libmpeg2 && make && make install && cd ../include && make && make install)
573         touch $@
574
575 CLEAN_FILE += .mpeg2
576 CLEAN_PKG += libmpeg2
577 #DISTCLEAN_PKG += mpeg2dec-$(MPEG2DEC_VERSION)-cvs.tar.gz
578 DISTCLEAN_PKG += libmpeg2-$(LIBMPEG2_VERSION).tar.gz
579
580 # ***************************************************************************
581 # libid3tag
582 # ***************************************************************************
583
584 libid3tag-$(LIBID3TAG_VERSION).tar.gz:
585         $(WGET) $(LIBID3TAG_URL)
586
587 libid3tag: libid3tag-$(LIBID3TAG_VERSION).tar.gz
588         $(EXTRACT_GZ)
589         patch -d libid3tag -p0 < Patches/libid3tag-0.15.1b-fix-CVE-2008-2109.patch
590
591 .id3tag: libid3tag
592         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install)
593         $(INSTALL_NAME)
594         touch $@
595
596 CLEAN_FILE += .id3tag
597 CLEAN_PKG += libid3tag
598 DISTCLEAN_PKG += libid3tag-$(LIBID3TAG_VERSION).tar.gz
599
600 # ***************************************************************************
601 # pcre
602 # ***************************************************************************
603
604 pcre-$(PCRE_VERSION).tar.bz2:
605         $(WGET) $(PCRE_URL)
606
607 pcre: pcre-$(PCRE_VERSION).tar.bz2
608         $(EXTRACT_BZ2)
609
610 .pcre: pcre
611         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-shared && make && make install )
612         touch $@
613
614 CLEAN_FILE += .pcre
615 CLEAN_PKG += pcre
616 DISTCLEAN_PKG += pcre-$(PCRE_VERSION).tar.bz2
617
618 # ***************************************************************************
619 # lua
620 # ***************************************************************************
621
622 ifdef HAVE_WIN32
623 LUA_MAKEPLATEFORM=mingw
624 else
625 ifdef HAVE_DARWIN_OS
626 LUA_MAKEPLATEFORM=macosx
627 else
628 ifdef HAVE_LINUX
629 LUA_MAKEPLATEFORM=linux
630 else
631 ifdef HAVE_BSD
632 LUA_MAKEPLATEFORM=bsd
633 else
634 LUA_MAKEPLATEFORM=generic
635 endif
636 endif
637 endif
638 endif
639
640 lua-$(LUA_VERSION).tar.gz:
641         $(WGET) $(LUA_URL)
642
643 lua: lua-$(LUA_VERSION).tar.gz
644         $(EXTRACT_GZ)
645
646 .lua: lua
647 ifdef HAVE_WIN32
648         ( cd $<; sed -i.orig 's/lua luac/lua.exe/' Makefile ; cd src; sed -i.orig 's/CC=/#CC=/' Makefile; cd ../..;)
649         (cd $<; $(HOSTCC) make $(LUA_MAKEPLATEFORM); cd src; $(HOSTCC) make liblua.a; cd ..;$(HOSTCC) make install INSTALL_TOP=$(PREFIX); $(RANLIB) $(PREFIX)/lib/liblua.a)
650         (cd $<; sed -i.orig 's@prefix= /usr/local@prefix= $(PREFIX)@' etc/lua.pc; mkdir -p $(PREFIX)/lib/pkgconfig; cp etc/lua.pc $(PREFIX)/lib/pkgconfig)
651 else
652         (cd $<; $(HOSTCC) make $(LUA_MAKEPLATEFORM) && make install INSTALL_TOP=$(PREFIX))
653 endif
654         touch $@
655
656 CLEAN_FILE += .lua
657 CLEAN_PKG += lua
658 DISTCLEAN_PKG += lua-$(LUA_VERSION).tar.gz
659
660 # ***************************************************************************
661 # libmad
662 # ***************************************************************************
663
664 libmad-$(LIBMAD_VERSION).tar.gz:
665         $(WGET) $(LIBMAD_URL)
666
667 libmad: libmad-$(LIBMAD_VERSION).tar.gz
668         $(EXTRACT_GZ)
669
670 .mad: libmad
671         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="-O3" && make && make install)
672         $(INSTALL_NAME)
673         touch $@
674
675 CLEAN_FILE += .mad
676 CLEAN_PKG += libmad
677 DISTCLEAN_PKG += libmad-$(LIBMAD_VERSION).tar.gz
678
679 # ***************************************************************************
680 # ogg
681 # ***************************************************************************
682
683 libogg-$(OGG_VERSION).tar.gz:
684         $(WGET) $(OGG_URL)
685
686 libogg: libogg-$(OGG_VERSION).tar.gz
687         $(EXTRACT_GZ)
688         patch -p0 < Patches/ogg.patch
689         patch -p0 < Patches/libogg-1.1.patch
690 ifdef HAVE_WINCE
691         patch -p0 < Patches/libogg-wince.patch
692 endif
693         (cd $@; autoconf)
694
695 .ogg: libogg
696         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make install)
697         $(INSTALL_NAME)
698         touch $@
699
700 CLEAN_FILE += .ogg
701 CLEAN_PKG += libogg
702 DISTCLEAN_PKG += libogg-$(OGG_VERSION).tar.gz
703
704 # ***************************************************************************
705 # vorbis
706 # ***************************************************************************
707
708 #vorbis:
709 #       @echo "*** Please type \"anoncvs\" here : ***"
710 #       cvs -d $(OGG_CVSROOT) login
711 #       cvs -d $(OGG_CVSROOT) co vorbis
712 #       (cd $@; ./autogen.sh)
713
714 libvorbis-$(VORBIS_VERSION).tar.gz:
715         $(WGET) $(VORBIS_URL)
716
717 libvorbis: libvorbis-$(VORBIS_VERSION).tar.gz
718         $(EXTRACT_GZ)
719         patch -p0 < Patches/libvorbis.patch
720         patch -d libvorbis -p0 < Patches/libvorbis-r14598-CVE-2008-1420.patch
721         patch -d libvorbis -p0 < Patches/libvorbis-r14602-CVE-2008-1419.patch
722         patch -d libvorbis -p0 < Patches/libvorbis-r14602-CVE-2008-1423.patch
723         (cd $@; autoconf)
724
725 .vorbis: libvorbis .ogg
726         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install)
727 #       $(INSTALL_NAME)
728         touch $@
729
730 .vorbisenc: .vorbis .ogg
731 #       $(INSTALL_NAME)
732         touch $@
733
734 CLEAN_FILE += .vorbis .vorbisenc
735 CLEAN_PKG += libvorbis
736 DISTCLEAN_PKG += libvorbis-$(VORBIS_VERSION).tar.gz
737
738 # ***************************************************************************
739 # tremor
740 # ***************************************************************************
741
742 ifdef SVN
743 tremor: 
744         $(SVN) co http://svn.xiph.org/trunk/Tremor tremor
745         (cd $@ && patch -p0 < ../Patches/tremor.patch)
746         (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)
747 else
748 tremor-$(TREMOR_VERSION).tar.bz2:
749         echo "tremor snapshot does not exist, you MUST use subversion !"
750         exit -1
751         $(WGET) $(TREMOR_URL)
752
753 tremor: tremor-$(TREMOR_VERSION).tar.bz2
754         $(EXTRACT_BZ2)
755 endif
756
757 .tremor: tremor .ogg
758         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-shared && make && make install)
759         $(INSTALL_NAME)
760         touch $@
761
762 ifdef SVN
763 tremor-source: tremor
764         tar cfvz tremor-$(DATE).tar.gz tremor
765
766 SOURCE += tremor-source
767 endif
768
769 CLEAN_FILE += .tremor
770 CLEAN_PKG += tremor
771 #DISTCLEAN_PKG += tremor-$(TREMOR_VERSION).tar.bz2 #no tremor snapshot
772
773 # ***************************************************************************
774 # theora
775 # ***************************************************************************
776
777 libtheora-$(THEORA_VERSION).tar.bz2:
778         $(WGET) $(THEORA_URL)
779
780 libtheora: libtheora-$(THEORA_VERSION).tar.bz2
781         $(EXTRACT_BZ2)
782         patch -p0 < Patches/theora.patch
783         patch -p0 < Patches/libtheora-includes.patch
784         (cd $@; autoconf)
785
786 THEORACONF = --disable-sdltest --disable-oggtest --disable-vorbistest --disable-examples
787
788 .theora: libtheora .ogg
789 ifdef HAVE_BEOS
790         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) $(THEORACONF) --disable-asm && make && make install)
791 else
792         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) $(THEORACONF)&& make && make install)
793 endif
794         $(INSTALL_NAME)
795         touch $@
796
797 CLEAN_FILE += .theora
798 CLEAN_PKG += libtheora
799 DISTCLEAN_PKG += libtheora-$(THEORA_VERSION).tar.bz2
800
801 # ***************************************************************************
802 # shout
803 # ***************************************************************************
804
805 libshout-$(SHOUT_VERSION).tar.gz:
806         $(WGET) $(SHOUT_URL)
807
808 libshout: libshout-$(SHOUT_VERSION).tar.gz
809         $(EXTRACT_GZ)
810 ifdef HAVE_WIN32
811         patch -p0 < Patches/libshout-win32.patch
812         (cd $@; autoreconf && automake)
813 endif
814  
815 .shout: libshout .theora .ogg .speex .vorbis
816         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) &&  make && make install )
817         $(INSTALL_NAME)
818         touch $@
819
820 CLEAN_FILE += .shout
821 CLEAN_PKG += libshout
822 DISTCLEAN_PKG += libshout-$(SHOUT_VERSION).tar.gz
823
824 # ***************************************************************************
825 # flac
826 # ***************************************************************************
827
828 flac-$(FLAC_VERSION).tar.gz:
829         $(WGET) $(FLAC_URL)
830
831 flac: flac-$(FLAC_VERSION).tar.gz
832         $(EXTRACT_GZ)
833 ifdef HAVE_WIN32
834         patch -p0 < Patches/flac-win32.patch
835 endif
836
837 FLAC_DISABLE_FLAGS = --disable-oggtest --disable-xmms-plugin --disable-cpplibs
838
839 .flac: flac .ogg
840 ifdef HAVE_WIN32
841         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) $(FLAC_DISABLE_FLAGS) && cd src&& make -C libFLAC&& make -C libFLAC install && cd .. && make -C include install)
842 else
843 ifdef HAVE_DARWIN_OS
844 ifdef HAVE_DARWIN_OS_ON_INTEL
845         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-asm-optimizations && cd src && make -C libFLAC && make -C libFLAC install  && cd .. && make -C include install)
846 else
847         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) $(FLAC_DISABLE_FLAGS) && cd src && make -C libFLAC && make -C libFLAC install  && cd .. && make -C include install)
848 endif
849 else
850         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX)  $(FLAC_DISABLE_FLAGS) && cd src && make -C libFLAC && make -C libFLAC install  && cd .. && make -C include install)
851 endif
852 endif
853         $(INSTALL_NAME)
854         touch $@
855
856 CLEAN_FILE += .flac
857 CLEAN_PKG += flac
858 DISTCLEAN_PKG += flac-$(FLAC_VERSION).tar.gz
859
860 # ***************************************************************************
861 # speex
862 # ***************************************************************************
863
864 speex-$(SPEEX_VERSION).tar.gz:
865         $(WGET) $(SPEEX_URL)
866
867 speex: speex-$(SPEEX_VERSION).tar.gz
868         $(EXTRACT_GZ)
869         patch -p0 < Patches/speex.patch
870 ifdef HAVE_BEOS
871         patch -p0 < Patches/speex-BeOS.patch
872 endif
873
874 .speex: speex
875         (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --enable-ogg=no && make && make install)
876         $(INSTALL_NAME)
877         touch $@
878
879 CLEAN_FILE += .speex
880 CLEAN_PKG += speex
881 DISTCLEAN_PKG += speex-$(SPEEX_VERSION).tar.gz
882
883 # ***************************************************************************
884 # faad2
885 # ***************************************************************************
886
887 faad2-$(FAAD2_VERSION).tar.gz:
888         $(WGET) $(FAAD2_URL)
889
890 faad2: faad2-$(FAAD2_VERSION).tar.gz
891         $(EXTRACT_GZ)
892         (cd $@; ./bootstrap)
893
894 .faad: faad2
895         (cd $< && $(HOSTCC) ./configure $(HOSTCONF) --disable-shared --prefix=$(PREFIX) CFLAGS="-O3" && sed -i.orig "s/shrext_cmds/shrext/g" libtool && make -C libfaad && make -C libfaad install)
896         touch $@
897
898 CLEAN_FILE += .faad
899 CLEAN_PKG += faad2
900 DISTCLEAN_PKG += faad2-$(FAAD2_VERSION).tar.gz
901
902 # ***************************************************************************
903 # faac
904 # ***************************************************************************
905
906 faac-$(FAAC_VERSION).tar.gz:
907         $(WGET) $(FAAC_URL