comparison configure @ 8198:1935017c0f71

Experimantal OSD menu
author albeu
date Thu, 14 Nov 2002 23:49:05 +0000
parents 487cfc28525d
children 31bda85aeb11
comparison
equal deleted inserted replaced
8197:b31caec933e9 8198:1935017c0f71
150 --disable-css Disable old-style libcss DVD support [autodetect] 150 --disable-css Disable old-style libcss DVD support [autodetect]
151 --disable-cdparanoia Disable cdparanoia support [autodetect] 151 --disable-cdparanoia Disable cdparanoia support [autodetect]
152 --enable-freetype Enable freetype2 font rendering support [disabled] 152 --enable-freetype Enable freetype2 font rendering support [disabled]
153 --disable-unrarlib Disable Unique RAR File Library [enabled] 153 --disable-unrarlib Disable Unique RAR File Library [enabled]
154 --enable-new-conf Enable new config stuff [disabled] 154 --enable-new-conf Enable new config stuff [disabled]
155 --enable-menu Enable osd menu support (need new config) [disabled]
155 156
156 Codecs: 157 Codecs:
157 --enable-gif enable gif89a output support [autodetect] 158 --enable-gif enable gif89a output support [autodetect]
158 --enable-png enable png input/output support [autodetect] 159 --enable-png enable png input/output support [autodetect]
159 --enable-jpeg enable jpeg input/output support [autodetect] 160 --enable-jpeg enable jpeg input/output support [autodetect]
1013 _cdparanoia=auto 1014 _cdparanoia=auto
1014 _big_endian=auto 1015 _big_endian=auto
1015 _freetype=no 1016 _freetype=no
1016 _shared_pp=no 1017 _shared_pp=no
1017 _new_conf=no 1018 _new_conf=no
1019 _menu=no
1018 1020
1019 for ac_option do 1021 for ac_option do
1020 case "$ac_option" in 1022 case "$ac_option" in
1021 # Skip 1st pass 1023 # Skip 1st pass
1022 --target=*) ;; 1024 --target=*) ;;
1196 --disable-shared-pp) _shared_pp=no ;; 1198 --disable-shared-pp) _shared_pp=no ;;
1197 1199
1198 --enable-new-conf) _new_conf=yes ;; 1200 --enable-new-conf) _new_conf=yes ;;
1199 --disable-new-conf) _new_conf=no ;; 1201 --disable-new-conf) _new_conf=no ;;
1200 1202
1203 --enable-menu) _menu=yes ;;
1204 --disable-menu) _menu=no ;;
1205
1201 --language=*) 1206 --language=*)
1202 LINGUAS=`echo $ac_option | cut -d '=' -f 2` 1207 LINGUAS=`echo $ac_option | cut -d '=' -f 2`
1203 ;; 1208 ;;
1204 --with-libdvdnav=*) 1209 --with-libdvdnav=*)
1205 _dvdnavdir=`echo $ac_option | cut -d '=' -f 2` 1210 _dvdnavdir=`echo $ac_option | cut -d '=' -f 2`
4246 else 4251 else
4247 _def_new_conf='#undef NEW_CONFIG' 4252 _def_new_conf='#undef NEW_CONFIG'
4248 fi 4253 fi
4249 echores "$_new_conf" 4254 echores "$_new_conf"
4250 4255
4256 echocheck "OSD menu"
4257 if test "$_menu" = yes ; then
4258 test "$_new_conf" != yes && die "New config support needed for the OSD menu (--enable-new-conf)."
4259 _def_menu='#define HAVE_MENU 1'
4260 else
4261 _def_menu='#undef HAVE_MENU'
4262 fi
4263 echores "$_menu"
4264
4251 # --------------- GUI specific tests begin ------------------- 4265 # --------------- GUI specific tests begin -------------------
4252 echocheck "GUI" 4266 echocheck "GUI"
4253 echo "$_gui" 4267 echo "$_gui"
4254 if test "$_gui" = yes ; then 4268 if test "$_gui" = yes ; then
4255 4269
4515 STREAMING_LIVE_DOT_COM = $_live 4529 STREAMING_LIVE_DOT_COM = $_live
4516 STREAMING_LIB = $_ld_streaming $_ld_live 4530 STREAMING_LIB = $_ld_streaming $_ld_live
4517 VIDIX = $_vidix 4531 VIDIX = $_vidix
4518 PP_LIB = $_ld_pp 4532 PP_LIB = $_ld_pp
4519 SHARED_PP = $_shared_pp 4533 SHARED_PP = $_shared_pp
4534 LIBMENU = $_menu
4520 4535
4521 OPENDIVX = $_opendivx 4536 OPENDIVX = $_opendivx
4522 4537
4523 UNRARLIB = $_unrarlib 4538 UNRARLIB = $_unrarlib
4524 4539
4983 $_def_joystick 4998 $_def_joystick
4984 4999
4985 /* enables / disables new config */ 5000 /* enables / disables new config */
4986 $_def_new_conf 5001 $_def_new_conf
4987 5002
5003 /* enables / disables osd menu */
5004 $_def_menu
5005
4988 /* Extension defines */ 5006 /* Extension defines */
4989 $_def_3dnow // only define if you have 3DNOW (AMD k6-2, AMD Athlon, iDT WinChip, etc.) 5007 $_def_3dnow // only define if you have 3DNOW (AMD k6-2, AMD Athlon, iDT WinChip, etc.)
4990 $_def_3dnowex // only define if you have 3DNOWEX (AMD Athlon, etc.) 5008 $_def_3dnowex // only define if you have 3DNOWEX (AMD Athlon, etc.)
4991 $_def_mmx // only define if you have MMX (newer x86 chips, not P54C/PPro) 5009 $_def_mmx // only define if you have MMX (newer x86 chips, not P54C/PPro)
4992 $_def_mmx2 // only define if you have MMX2 (Athlon/PIII/4/CelII) 5010 $_def_mmx2 // only define if you have MMX2 (Athlon/PIII/4/CelII)