comparison configure @ 7446:ad00ad5f25a9

Automatic unrar of vobsub. Does not work with rar v3
author kmkaplan
date Fri, 20 Sep 2002 01:26:39 +0000
parents 7a221aaf7012
children 32c7ca9359b1
comparison
equal deleted inserted replaced
7445:6a25ea5b2401 7446:ad00ad5f25a9
147 --disable-dvdread Disable libdvdread support [autodetect] 147 --disable-dvdread Disable libdvdread support [autodetect]
148 --disable-mpdvdkit Disable mpdvdkit/mpdvdkit2 support [autodetect] 148 --disable-mpdvdkit Disable mpdvdkit/mpdvdkit2 support [autodetect]
149 --disable-css Disable old-style libcss DVD support [autodetect] 149 --disable-css Disable old-style libcss DVD support [autodetect]
150 --disable-cdparanoia Disable cdparanoia support [autodetect] 150 --disable-cdparanoia Disable cdparanoia support [autodetect]
151 --enable-freetype Enable freetype2 font rendering support [disabled] 151 --enable-freetype Enable freetype2 font rendering support [disabled]
152 --disable-unrarlib Disable Unique RAR File Library [enabled]
152 153
153 Codecs: 154 Codecs:
154 --enable-gif enable gif89a output support [autodetect] 155 --enable-gif enable gif89a output support [autodetect]
155 --enable-png enable png input/output support [autodetect] 156 --enable-png enable png input/output support [autodetect]
156 --enable-jpeg enable jpeg input/output support [autodetect] 157 --enable-jpeg enable jpeg input/output support [autodetect]
963 _mlib=auto 964 _mlib=auto
964 _sgiaudio=auto 965 _sgiaudio=auto
965 _sunaudio=auto 966 _sunaudio=auto
966 _alsa=auto 967 _alsa=auto
967 _fastmemcpy=yes 968 _fastmemcpy=yes
969 _unrarlib=yes
968 _win32=auto 970 _win32=auto
969 _dshow=yes 971 _dshow=yes
970 _select=yes 972 _select=yes
971 _tv=yes 973 _tv=yes
972 _tv_v4l=auto 974 _tv_v4l=auto
1157 --disable-cdparanoia) _cdparanoia=no ;; 1159 --disable-cdparanoia) _cdparanoia=no ;;
1158 --enable-big-endian) _big_endian=yes ;; 1160 --enable-big-endian) _big_endian=yes ;;
1159 --disable-big-endian) _big_endian=no ;; 1161 --disable-big-endian) _big_endian=no ;;
1160 --enable-freetype) _freetype=yes ;; 1162 --enable-freetype) _freetype=yes ;;
1161 --disable-freetype) _freetype=no ;; 1163 --disable-freetype) _freetype=no ;;
1164 --enable-unralib) _unrarlib=yes ;;
1165 --disable-unrarlib) _unrarlib=no ;;
1162 1166
1163 --enable-dga) _dga=auto ;; # as we don't know if it's 1 or 2 1167 --enable-dga) _dga=auto ;; # as we don't know if it's 1 or 2
1164 --enable-dga=*) _dga=`echo $ac_option | cut -d '=' -f 2` ;; 1168 --enable-dga=*) _dga=`echo $ac_option | cut -d '=' -f 2` ;;
1165 --disable-dga) _dga=no ;; 1169 --disable-dga) _dga=no ;;
1166 1170
3958 else 3962 else
3959 _def_fastmemcpy='#undef USE_FASTMEMCPY' 3963 _def_fastmemcpy='#undef USE_FASTMEMCPY'
3960 fi 3964 fi
3961 echores "$_fastmemcpy" 3965 echores "$_fastmemcpy"
3962 3966
3967 echocheck "UniquE RAR File Library"
3968 if test "$_unrarlib" = yes ; then
3969 _def_unrarlib='#define USE_UNRARLIB 1'
3970 else
3971 _def_unrarlib='#undef USE_UNRARLIB'
3972 fi
3973 echores "$_unrarlib"
3963 3974
3964 echocheck "TV interface" 3975 echocheck "TV interface"
3965 if test "$_tv" = yes ; then 3976 if test "$_tv" = yes ; then
3966 _def_tv='#define USE_TV 1' 3977 _def_tv='#define USE_TV 1'
3967 _inputmodules="tv $_inputmodules" 3978 _inputmodules="tv $_inputmodules"
4340 STREAMING_LIVE_DOT_COM = $_live 4351 STREAMING_LIVE_DOT_COM = $_live
4341 STREAMING_LIB = $_ld_streaming $_ld_live 4352 STREAMING_LIB = $_ld_streaming $_ld_live
4342 VIDIX = $_vidix 4353 VIDIX = $_vidix
4343 4354
4344 OPENDIVX = $_opendivx 4355 OPENDIVX = $_opendivx
4356
4357 UNRARLIB = $_unrarlib
4345 4358
4346 PNG = $_mkf_png 4359 PNG = $_mkf_png
4347 JPEG = $_mkf_jpg 4360 JPEG = $_mkf_jpg
4348 GIF = $_mkf_gif 4361 GIF = $_mkf_gif
4349 4362
4657 $_def_live 4670 $_def_live
4658 4671
4659 /* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/ 4672 /* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/
4660 $_def_fastmemcpy 4673 $_def_fastmemcpy
4661 4674
4675 /* Use unrarlib for Vobsubs */
4676 $_def_unrarlib
4677
4662 /* gui support, please do not edit this option */ 4678 /* gui support, please do not edit this option */
4663 $_def_gui 4679 $_def_gui
4664 4680
4665 /* Audio output drivers */ 4681 /* Audio output drivers */
4666 $_def_ossaudio 4682 $_def_ossaudio