Mercurial > mplayer.hg
annotate configure @ 4884:c758cf9360d9
cinepak added
author | arpi |
---|---|
date | Thu, 28 Feb 2002 01:42:44 +0000 |
parents | e926b7dd1993 |
children | 0ccd7731c17b |
rev | line source |
---|---|
2463 | 1 #! /bin/sh |
2896
3a44575edc30
Added --enable-libvo2, NOTE: it doesn't compile with libvo2 yet!
mswitch
parents:
2894
diff
changeset
|
2 # |
2943 | 3 # Original version (C) 2000 Pontscho/fresh!mindworkz |
4 # pontscho@makacs.poliod.hu | |
2482 | 5 # |
2943 | 6 # History / Contributors: check the cvs log ! |
1618 | 7 # |
2943 | 8 # Cleanups all over the place (c) 2001 pl |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1427
diff
changeset
|
9 # |
1258 | 10 # |
2943 | 11 # Guidelines: |
12 # If the option is named 'opt': | |
13 # _opt : should have a value in yes/no/auto | |
14 # _def_opt : '#define ... 1' or '#undef ...' that is: some C code | |
15 # _ld_opt : ' -L/path/dir -lopt ' that is: some GCC option | |
16 # _inc_opt : ' -I/path/dir/include ' | |
849 | 17 # |
4543 | 18 # In this file, a tab is 8 chars and indentation shift is 2 characters |
19 # | |
2943 | 20 # GOTCHAS: |
21 # - config files are currently: | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
22 # config.h config.mak libvo/config.mak libao2/config.mak |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
23 # Gui/config.mak libvo2/config.mak |
1 | 24 # |
2943 | 25 ############################################################################# |
1 | 26 |
2943 | 27 # Prefer these macros to full length text ! |
28 # These macros only return an error code - NO display is done | |
2193 | 29 cc_check() { |
2988 | 30 echo >> "$TMPLOG" |
2943 | 31 cat "$TMPC" >> "$TMPLOG" |
32 echo >> "$TMPLOG" | |
2988 | 33 echo "$_cc $_inc_extra $_ld_static $_ld_extra $TMPC -o $TMPO $@" >> "$TMPLOG" |
3022
95dc79ab9f0d
_ld_x11 patch by Anders Johansson <ajh@atri.curtin.edu.au>
pl
parents:
3021
diff
changeset
|
34 > "$TMPO" |
2988 | 35 ( "$_cc" $_inc_extra $_ld_static $_ld_extra "$TMPC" -o "$TMPO" "$@" ) >> "$TMPLOG" 2>&1 |
36 TMP="$?" | |
37 echo >> "$TMPLOG" | |
38 echo "ldd $TMPO" >> "$TMPLOG" | |
39 ( ldd "$TMPO" ) >> "$TMPLOG" 2>&1 | |
40 echo >> "$TMPLOG" | |
41 return "$TMP" | |
2190 | 42 } |
43 | |
2943 | 44 # Display error message, flushes tempfile, exit |
2193 | 45 die () { |
2943 | 46 echo |
47 echo "Error: $@" >&2 | |
48 echo >&2 | |
49 rm -f "$TMPO" "$TMPC" "$TMPS" "$TMPCPP" | |
3161 | 50 echo "Check "$TMPLOG" if you do not understand why it failed." |
2943 | 51 exit 1 |
2190 | 52 } |
53 | |
2943 | 54 # OS test booleans functions |
3248 | 55 issystem() { |
56 test "`echo $system_name | tr A-Z a-z`" = "`echo $1 | tr A-Z a-z`" | |
57 } | |
58 linux() { issystem "Linux" ; return "$?" ; } | |
59 sunos() { issystem "SunOS" ; return "$?" ; } | |
60 irix() { issystem "IRIX" ; return "$?" ; } | |
61 cygwin() { issystem "CYGWIN" ; return "$?" ; } | |
62 freebsd() { issystem "FreeBSD" ; return "$?" ; } | |
63 netbsd() { issystem "NetBSD" ; return "$?" ; } | |
64 bsdos() { issystem "BSD/OS" ; return "$?" ; } | |
65 openbsd() { issystem "OpenBSD" ; return "$?" ; } | |
2594 | 66 bsd() { freebsd || netbsd || bsdos || openbsd ; return "$?" ; } |
3248 | 67 qnx() { issystem "QNX" ; return "$?" ; } |
2190 | 68 |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
69 # arch test boolean functions |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
70 x86() { |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
71 case "$host_arch" in |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
72 i[3-9]86|x86*) return 0 ;; |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
73 *) return 1 ;; |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
74 esac |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
75 } |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
76 |
2943 | 77 # Use this before starting a check |
78 echocheck() { | |
79 echo "============ Checking for $@ ============" >> "$TMPLOG" | |
4543 | 80 echo ${_echo_n} "Checking for $@ ... ${_echo_c}" |
2943 | 81 } |
82 | |
83 # Use this to echo the results of a check | |
84 echores() { | |
2961 | 85 echo "Result is: $@" >> "$TMPLOG" |
2943 | 86 echo "##########################################" >> "$TMPLOG" |
87 echo "" >> "$TMPLOG" | |
88 echo "$@" | |
89 } | |
90 ############################################################################# | |
1 | 91 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
92 # Check how echo works in this /bin/sh |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
93 case `echo -n` in |
4543 | 94 -n) _echo_n= _echo_c='\c' ;; # SysV echo |
95 *) _echo_n='-n ' _echo_c= ;; # BSD echo | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
96 esac |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
97 |
2435 | 98 LANGUAGES=`echo help_mp-??.h | sed "s/help_mp-\(..\).h/\1/g"` |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
99 |
1384
5665219136ce
Applied patch by pl <p_l@tfz.net> (help switch anywhere).
atmos4
parents:
1383
diff
changeset
|
100 for parm in "$@" ; do |
2435 | 101 if test "$parm" = "--help" || test "$parm" = "-help" || test "$parm" = "-h" ; then |
102 cat << EOF | |
103 | |
2943 | 104 Usage: $0 [OPTIONS]... |
1 | 105 |
2435 | 106 Configuration: |
107 -h, --help display this help and exit | |
1 | 108 |
2435 | 109 Installation directories: |
2190 | 110 --prefix=DIR use this prefix for installing mplayer [/usr/local] |
111 --datadir=DIR use this prefix for installing machine independent | |
3747 | 112 data files (fonts, skins) [PREFIX/share/mplayer] |
113 --confdir=DIR use this prefix for installing configuration files | |
114 [same as datadir] | |
2435 | 115 |
116 Optional features: | |
3079 | 117 --disable-mencoder disable mencoder [autodetect] |
2435 | 118 --enable-largefiles enable support for files >2^32 bytes long [disable] |
4801
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
119 --enable-linux-devfs set default devices to devfs ones [disable] |
2945 | 120 --enable-termcap use termcap database for key codes [autodetect] |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
121 --enable-lirc enable LIRC (remote control) support [autodetect] |
2435 | 122 --enable-gui enable GUI [disable] |
3242
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
123 --disable-tv disable TV Interface (tv/dvb grabbers) [enable] |
3695 | 124 --disable-tv-v4l disable Video 4 Linux TV Interface support [autodetect] |
2435 | 125 --disable-win32 disable Win32 DLL support [autodetect] |
3895
7df4a1460e3a
dshow help changed - it doesn't depend on c++ compiler/libs
arpi
parents:
3893
diff
changeset
|
126 --disable-dshow disable DirectShow support [autodetect] |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
127 --disable-xanim disable XAnim DLL support [autodetect] |
4678 | 128 --disable-xvid disable XviD codec [autodetect] |
129 --disable-divx4linux disable DivX4linux codec [autodetect] | |
4489 | 130 --disable-opendivx disable OpenDivx codec [enable] |
2435 | 131 --enable-vorbis build with OggVorbis support [autodetect] |
132 --disable-iconv do not use iconv(3) function [autodetect] | |
3015 | 133 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect] |
3695 | 134 --disable-mp1e disable libmp1e support |
135 (use this option if it does not compile) [enable] | |
136 --disable-streaming disable network streaming support | |
137 (support for: http/mms/rtp) [enable] | |
4543 | 138 --disable-vidix disable VIDIX stuff [enable] |
4824
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
139 --disable-new-input disable new input system [enable] |
4507
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
140 --enable-joystick enable joystick support in new input [disable] |
2435 | 141 Video: |
2190 | 142 --enable-gl build with OpenGL render support [autodetect] |
3206 | 143 --enable-dga[=n] build with DGA [n in {1, 2} ] support [autodetect] |
4560 | 144 --enable-vesa build with VESA support [autodetect] |
2190 | 145 --enable-svga build with SVGAlib support [autodetect] |
146 --enable-sdl build with SDL render support [autodetect] | |
147 --enable-aa build with AAlib render support [autodetect] | |
148 --enable-ggi build with GGI render support [autodetect] | |
3695 | 149 --enable-dxr3 build with DXR3/H+ render support [autodetect] |
150 --enable-dvb build with support for output via DVB-Card [autodetect] | |
2943 | 151 --enable-mga build with mga_vid support |
2435 | 152 (check for /dev/mga_vid) [autodetect] |
153 --enable-xmga build with mga_vid X Window support | |
154 (check for X & /dev/mga_vid) [autodetect] | |
2190 | 155 --enable-xv build with Xv render support for X 4.x [autodetect] |
3695 | 156 --enable-vm build with XF86VidMode support for X11 [autodetect] |
157 --enable-xinerama build with Xinerama support for X11 [autodetect] | |
2190 | 158 --enable-x11 build with X11 render support [autodetect] |
4019
079177a400cb
fbdev autodetection enabled (requires linux && /dev/fb0)
pl
parents:
4003
diff
changeset
|
159 --enable-fbdev build with FBDev render support [autodetect] |
4543 | 160 --enable-fbdev=nocopy yuv12 converts directly into framebuffer |
3083
79b3ce698c15
typo (1st found by Andr¸«± Dahlqvist <andre.dahlqvist@telia.com>)
pl
parents:
3079
diff
changeset
|
161 --enable-mlib build with MLIB support (Solaris only) [autodetect] |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
162 --enable-3dfx build with 3dfx support [disable] |
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
163 --enable-tdfxfb build with tdfxfb support [disable] |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
164 --enable-directfb build with DirectFB support [autodetect] |
4211
2c1ca684ff04
zr en/disable, libjpeg detection - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4209
diff
changeset
|
165 --enable-zr build with ZR36067/ZR36060 support [disable] |
1 | 166 |
2435 | 167 Audio: |
2190 | 168 --disable-ossaudio disable OSS sound support [autodetect] |
169 --disable-alsa disable alsa sound support [autodetect] | |
170 --disable-sunaudio disable Sun sound support [autodetect] | |
2435 | 171 --disable-mad disable mad audio support [autodetect] |
3015 | 172 --disable-select disable using select() on OSS audio device [enable] |
642 | 173 |
2594 | 174 Miscellaneous options: |
2458 | 175 --cc=COMPILER use this C compiler to build MPlayer [gcc] |
2435 | 176 --target=PLATFORM target platform (i386-linux, arm-linux, etc) |
2916
5ecae3e4db37
optional parameters can be added after --enable-static .
gabucino
parents:
2908
diff
changeset
|
177 --enable-static build a statically linked binary. If more linking |
5ecae3e4db37
optional parameters can be added after --enable-static .
gabucino
parents:
2908
diff
changeset
|
178 options needed : --enable-static="-lslang -lncurses" |
2435 | 179 --language=xx select a language [en] |
180 (Available: $LANGUAGES) | |
181 | |
182 Advanced options: | |
183 --enable-mmx build with mmx support [autodetect] | |
184 --enable-mmx2 build with mmx2 support (PIII, Athlon) [autodetect] | |
185 --enable-3dnow build with 3dnow! support [autodetect] | |
186 --enable-3dnowex build with 3dnow-dsp! support (K7) [autodetect] | |
187 --enable-sse build with sse support [autodetect] | |
3841 | 188 --enable-sse2 build with sse2 support [autodetect] |
2435 | 189 --disable-fastmemcpy disable 3dnow/sse/mmx optimized memcpy() [enable] |
190 --enable-debug[=1-3] compile debugging information into mplayer [disable] | |
191 --enable-profile compile profiling information into mplayer [disable] | |
192 | |
2943 | 193 Hazardous options a.k.a. "DO NOT BUGREPORT ANYTHING !" |
4637
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
194 --disable-gcc-checking disable gcc version checking [enable] |
4864 | 195 --enable-xp enable eXtra Performance [default=no] |
2435 | 196 |
197 Use these options if autodetection fails: | |
2943 | 198 --with-extraincdir=DIR extra headers (png, dvb, mad, sdl, css, ...) in DIR |
199 --with-extralibdir=DIR extra library files (png, SDL, ...) in DIR | |
200 --with-x11incdir=DIR X headers in DIR | |
2435 | 201 --with-x11libdir=DIR X library files in DIR |
2988 | 202 --with-csslibdir=DIR libcss in DIR |
203 --with-madlibdir=DIR libmad (libmad shared lib.) in DIR | |
4543 | 204 --with-mlibdir=DIR libmlib (MLIB support) in DIR (Solaris only) |
2435 | 205 --with-win32libdir=DIR W*ndows DLL files in DIR |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
206 --with-xanimlibdir=DIR XAnim DLL files in DIR |
4678 | 207 --with-xvidcore=PATH path to XviD libcore.a (e.g: /opt/lib/libcore.a) |
2700 | 208 --with-sdl-config=PATH path to sdl*-config (e.g.: /opt/bin/sdl-config) |
209 --with-gtk-config=PATH path to gtk*-config (e.g.: /opt/bin/gtk-config) | |
210 --with-glib-config=PATH path to glib*-config (e.g.: /opt/bin/glib-config) | |
2435 | 211 |
1 | 212 EOF |
2435 | 213 exit 0 |
214 fi | |
1384
5665219136ce
Applied patch by pl <p_l@tfz.net> (help switch anywhere).
atmos4
parents:
1383
diff
changeset
|
215 done # for parm in ... |
1 | 216 |
2943 | 217 |
218 # 1st pass checking for vital options | |
2435 | 219 _cc=gcc |
220 test "$CC" && _cc="$CC" | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
221 _as=auto |
4864 | 222 _enable_xp=no |
1424
2fcccb831d72
Solaris /bin/sh does not like the extra ; in a "for var do ... done" loop
jkeil
parents:
1422
diff
changeset
|
223 for ac_option do |
2943 | 224 case "$ac_option" in |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
225 --target=*) |
2943 | 226 _target=`echo $ac_option | cut -d '=' -f 2` |
227 ;; | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
228 --cc=*) |
2943 | 229 _cc=`echo $ac_option | cut -d '=' -f 2` |
230 ;; | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
231 --as=*) |
2943 | 232 _as=`echo $ac_option | cut -d '=' -f 2` |
233 ;; | |
4637
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
234 --enable-gcc-checking) |
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
235 _skip_cc_check=no |
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
236 ;; |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
237 --disable-gcc-checking) |
2943 | 238 _skip_cc_check=yes |
239 ;; | |
4864 | 240 --enable-xp) |
241 _enable_xp=yes | |
242 ;; | |
243 --disable-xp) | |
244 _enable_xp=no | |
245 ;; | |
2988 | 246 --enable-static) |
247 _ld_static='-static' | |
248 ;; | |
249 --disable-static) | |
250 _ld_static='' | |
251 ;; | |
252 --enable-static=*) | |
253 _ld_static="-static `echo $ac_option | cut -d '=' -f 2`" | |
254 ;; | |
2943 | 255 --with-extraincdir=*) |
256 _inc_extra=-I`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -I,g'` | |
257 ;; | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
258 --with-extralibdir=*) |
2943 | 259 _ld_extra=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` |
260 ;; | |
261 esac | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
262 done |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
263 |
1323 | 264 # Determine our OS name and CPU architecture |
2171 | 265 if test -z "$_target" ; then |
2943 | 266 # OS name |
267 system_name=`( uname -s ) 2>&1` | |
268 case "$system_name" in | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
269 Linux|FreeBSD|NetBSD|BSD/OS|OpenBSD|SunOS|QNX) |
2943 | 270 ;; |
271 IRIX*) | |
272 system_name=IRIX | |
273 ;; | |
274 [cC][yY][gG][wW][iI][nN]*) | |
275 system_name=CYGWIN | |
276 ;; | |
277 *) | |
278 system_name="$system_name-UNKNOWN" | |
279 ;; | |
280 esac | |
2594 | 281 |
282 | |
2943 | 283 # host's CPU/instruction set |
2594 | 284 host_arch=`( uname -p ) 2>&1` |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
285 case "$host_arch" in |
2594 | 286 i386|sparc|ppc|alpha|arm|mips) |
2943 | 287 ;; |
1335
71c0f15c4712
Detect cpu architecture for a few more linux variants (linux/sparc, linux/ppc,
jkeil
parents:
1329
diff
changeset
|
288 |
2943 | 289 *) # uname -p on Linux returns 'unknown' for the processor type, |
290 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)' | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
291 |
2943 | 292 # Maybe uname -m (machine hardware name) returns something we |
293 # recognize. | |
1335
71c0f15c4712
Detect cpu architecture for a few more linux variants (linux/sparc, linux/ppc,
jkeil
parents:
1329
diff
changeset
|
294 |
2943 | 295 case "`( uname -m ) 2>&1`" in |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
296 i[3-9]86|x86*) host_arch=i386 ;; |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
297 ppc) host_arch=ppc ;; |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
298 alpha) host_arch=alpha ;; |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
299 sparc*) host_arch=sparc ;; |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
300 arm*) host_arch=arm ;; |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
301 *) host_arch=UNKNOWN ;; |
2943 | 302 esac |
303 ;; | |
304 esac | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
305 else |
2943 | 306 system_name=`echo $_target | cut -d '-' -f 2` |
307 host_arch=`echo $_target | cut -d '-' -f 1` | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
308 fi |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
309 |
1412 | 310 echo "Detected operating system: $system_name" |
311 echo "Detected host architecture: $host_arch" | |
312 | |
1 | 313 # LGB: temporary files |
2190 | 314 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do |
2943 | 315 test "$I" && break |
2190 | 316 done |
1 | 317 |
2983 | 318 TMPLOG="configure.log" |
319 rm -f "$TMPLOG" | |
2943 | 320 TMPC="$I/mplayer-conf-$RANDOM-$$.c" |
321 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp" | |
322 TMPO="$I/mplayer-conf-$RANDOM-$$.o" | |
323 TMPS="$I/mplayer-conf-$RANDOM-$$.S" | |
1 | 324 |
325 # config files | |
196 | 326 |
2943 | 327 # FIXME: A lot of stuff is installed under /usr/local |
328 # NK: But we should never use this stuff implicitly since we call compiler | |
329 # from /usr we should be sure that there no effects from other compilers | |
330 # (libraries) which might be installed into /usr/local. Let users use this | |
331 # stuff explicitly as command line argument. In other words: It would be | |
332 # resonable have or only /usr/include or only /usr/local/include. | |
333 | |
334 if freebsd ; then | |
335 _ld_extra="$_ld_extra -L/usr/local/lib" | |
336 _inc_extra="$_inc_extra -I/usr/local/include" | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
337 fi |
196 | 338 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
339 |
1023 | 340 # Checking CC version... |
2435 | 341 # gcc-3.0 merges optimizations coming from egcs, pgcc, agcc, ... |
2171 | 342 if test "$_skip_cc_check" != yes ; then |
2943 | 343 echocheck "$_cc version" |
3089 | 344 # also check for name (the version checking is only for _gcc_ up for now) |
345 # FIXME implement this in ver. check. | |
3159
b8e7c71f4fcb
Use "tail -1" instead of "tail -n 1" to print the last line, the "-n" option
jkeil
parents:
3127
diff
changeset
|
346 cc_name=`$_cc -v 2>&1 | tail -1 | cut -d ' ' -f 1` |
2943 | 347 cc_version=`$_cc -v 2>&1 | sed -n 's/^.*version \([aegcygnustp-]*[0-9.]*\).*$/\1/p'` |
348 case $cc_version in | |
349 '') | |
350 cc_version="v. ?.??, bad" | |
351 cc_verc_fail=yes | |
352 ;; | |
1388 | 353 2.95.[2-9]|2.95.[2-9].[0-9]|3.[0-9]|3.[0-9].[0-9]) |
2943 | 354 cc_version="$cc_version, ok" |
4345 | 355 cc_verc_fail=no |
2943 | 356 ;; |
357 *) | |
358 cc_version="$cc_version, bad" | |
359 cc_verc_fail=yes | |
360 ;; | |
361 esac | |
362 echores "$cc_version" | |
3876
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
363 # If gcc version is crappy RH one, then check if the user has installed the optional |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
364 # (at least in Rh7.2) gcc3 packages to save them some pain - malc@tmbg.co.uk |
4345 | 365 if test "$cc_verc_fail" = yes ; then |
3876
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
366 echocheck "gcc3 version" |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
367 _cc=gcc3 |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
368 cc_version=`$_cc -v 2>&1 | sed -n 's/^.*version \([aegcygnustp-]*[0-9.]*\).*$/\1/p'` |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
369 case $cc_version in |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
370 '') |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
371 cc_version="v. ?.??, bad" |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
372 cc_verc_fail=yes |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
373 ;; |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
374 2.95.[2-9]|2.95.[2-9].[0-9]|3.[0-9]|3.[0-9].[0-9]) |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
375 cc_version="$cc_version, ok" |
4345 | 376 cc_verc_fail=no |
3876
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
377 ;; |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
378 *) |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
379 cc_version="$cc_version, bad" |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
380 cc_verc_fail=yes |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
381 ;; |
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
382 esac |
4345 | 383 echores "$cc_version" |
3876
d619260dc756
applied patch by Malcolm <malc@cyberserf.co.uk>: check if the-less-buggier gcc3 is present if gcc2.96 found
alex
parents:
3873
diff
changeset
|
384 fi |
4345 | 385 if test "$cc_verc_fail" = yes ; then |
2943 | 386 cat <<EOF |
2908
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
387 |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
388 *** Please downgrade/upgrade C compiler to gcc-2.95.x or gcc-3.x version! *** |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
389 |
2943 | 390 You are using a different compiler than ours. We do not have the time to make |
391 sure everything works with compilers than the one we use. Use either use the | |
392 same compiler as ours, or use --disable-gcc-checking but DO *NOT* REPORT BUGS | |
393 unless you can reproduce them after recompiling with 2.95.x or 3.0.x version! | |
2908
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
394 |
2943 | 395 Note for gcc 2.96 users: some versions of this compiler are known to miscompile |
396 mplayer and lame (which is used for mencoder). If you get compile errors, | |
397 first upgrade to the latest 2.96 release (but minimum 2.96-85) and try again. | |
398 If the problem still exists, try with gcc 3.0.x (or 2.95.x) *BEFORE* reporting | |
399 bugs! | |
400 | |
401 GCC 2.96 IS NOT AND WILL NOT BE SUPPORTED BY US ! | |
402 | |
403 *** For details please read DOCS/gcc-2.96-3.0.html *** | |
2443 | 404 |
1766 | 405 EOF |
2943 | 406 die "Bad gcc version" |
407 fi | |
1012
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
408 else |
2111 | 409 cat <<EOF |
410 | |
2908
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
411 ****************************************************************************** |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
412 |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
413 Hmm. You really want to compile MPlayer with an *UNSUPPORTED* C compiler? |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
414 Ok. You know. Do it. But did you already read DOCS/gcc-2.96-3.0.html ??? |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
415 |
2943 | 416 DO NOT SEND BUGREPORTS OR COMPLAIN, it's *YOUR* compiler's fault! |
2442 | 417 Get ready for mysterious crashes, no-picture bugs, strange noises... REALLY! |
2943 | 418 Lame which is used by mencoder produces weird errors, too. |
2442 | 419 |
2908
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
420 If you have any problem, then install GCC 2.95.x or 3.x version and try again. |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
421 If the problem _still_ exists, then read DOCS/bugreports.html ! |
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
422 |
2943 | 423 *** DO NOT SEND BUGREPORTS OR COMPLAIN it's *YOUR* compiler's fault! *** |
424 | |
2908
220e6c728747
gcc version messages updated. let's flame us again...
arpi
parents:
2905
diff
changeset
|
425 ****************************************************************************** |
2111 | 426 |
427 EOF | |
428 | |
429 read _answer | |
430 | |
988
c6f88600d409
Enable to avoid checking version of gcc. New tests of as
nickols_k
parents:
987
diff
changeset
|
431 fi |
1 | 432 # --- |
433 | |
1272
89e9625b3c7d
rework autodetection of assembler used by gcc, the correct assembler is detected
jkeil
parents:
1264
diff
changeset
|
434 # now that we know what compiler should be used for compilation, try to find |
89e9625b3c7d
rework autodetection of assembler used by gcc, the correct assembler is detected
jkeil
parents:
1264
diff
changeset
|
435 # out which assembler is used by the $_cc compiler |
2171 | 436 if test "$_as" = auto ; then |
1272
89e9625b3c7d
rework autodetection of assembler used by gcc, the correct assembler is detected
jkeil
parents:
1264
diff
changeset
|
437 _as=`$_cc -print-prog-name=as` |
2943 | 438 test -z "$_as" && _as=as |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
439 fi |
1 | 440 |
2943 | 441 # Try to find the available options for the current CPU |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
442 if x86 ; then |
2943 | 443 if test -r /proc/cpuinfo ; then |
444 # linux with /proc mounted, extract cpu information from it | |
445 _cpuinfo="cat /proc/cpuinfo" | |
446 elif test -r /compat/linux/proc/cpuinfo ; then | |
447 # FreeBSD with linux emulation /proc mounted, | |
448 # extract cpu information from it | |
449 _cpuinfo="cat /compat/linux/proc/cpuinfo" | |
450 else | |
451 # all other OS try to extract cpu information from a small helper | |
452 # program TOOLS/cpuinfo instead | |
453 $_cc -o TOOLS/cpuinfo TOOLS/cpuinfo.c | |
454 _cpuinfo="TOOLS/cpuinfo" | |
455 fi | |
525 | 456 |
2943 | 457 pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -1` |
458 pvendor=`$_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1` | |
459 pfamily=`$_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1` | |
460 pmodel=`$_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1` | |
461 pstepping=`$_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1` | |
1 | 462 |
2943 | 463 pparam=`$_cpuinfo | grep 'features' | cut -d ':' -f 2 | head -1` |
464 if test -z "$pparam" ; then | |
465 pparam=`$_cpuinfo | grep 'flags' | cut -d ':' -f 2 | head -1` | |
466 fi | |
1 | 467 |
2943 | 468 _mmx=no |
469 _3dnow=no | |
470 _3dnowex=no | |
471 _mmx2=no | |
472 _sse=no | |
473 _sse2=no | |
3520 | 474 _mtrr=no |
1 | 475 |
2943 | 476 for i in $pparam ; do |
477 case "$i" in | |
478 3dnow) _3dnow=yes ;; | |
479 3dnowext) _3dnow=yes _3dnowex=yes ;; | |
480 mmx) _mmx=yes ;; | |
481 mmxext) _mmx2=yes ;; | |
482 mtrr|k6_mtrr) _mtrr=yes ;; | |
483 xmm|sse|kni) _sse=yes _mmx2=yes ;; | |
3836 | 484 sse2) _sse2=yes ;; |
2943 | 485 esac |
486 done | |
1 | 487 |
2943 | 488 echocheck "CPU vendor" |
489 echores "$pvendor ($pfamily:$pmodel:$pstepping)" | |
490 | |
491 echocheck "CPU type" | |
492 echores "$pname" | |
493 | |
494 fi | |
1 | 495 |
496 | |
4217
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
497 if [ "$host_arch" = alpha ]; then |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
498 echocheck "CPU type" |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
499 cat > $TMPC << EOF |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
500 int main() { |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
501 unsigned long ver, mask; |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
502 asm ("implver %0" : "=r" (ver)); |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
503 asm ("amask %1, %0" : "=r" (mask) : "r" (-1)); |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
504 printf("%ld-%x\n", ver, ~mask); |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
505 return 0; |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
506 } |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
507 EOF |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
508 $_cc -o "$TMPO" "$TMPC" |
4874 | 509 case `"$TMPO"` in |
4217
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
510 0-0) proc="ev4" ;; |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
511 1-0) proc="ev5" ;; |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
512 1-1) proc="ev56" ;; |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
513 1-101) proc="pca56" ;; |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
514 2-303) proc="ev6" ;; |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
515 2-307) proc="ev67" ;; |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
516 2-1307) proc="ev68" ;; |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
517 esac |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
518 echores "$proc" |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
519 fi |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
520 |
2500 | 521 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
522 case "$host_arch" in |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
523 i[3-9]86|x86*) |
2943 | 524 _def_arch="#define ARCH_X86 1" |
525 _target_arch="TARGET_ARCH_X86 = yes" | |
526 _def_words_endian="#undef WORDS_BIGENDIAN" | |
527 iproc=586 | |
528 proc=pentium | |
1 | 529 |
2943 | 530 case "$pvendor" in |
531 AuthenticAMD) | |
532 case "$pfamily" in | |
533 3) proc=i386 iproc=386 ;; | |
534 4) proc=i486 iproc=486 ;; | |
535 5) proc=k5 iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3 | |
536 test "$pmodel" -ge 6 && proc=k6 ;; | |
537 6|7) proc=k7 iproc=686 ;; | |
538 *) proc=pentium iproc=586 ;; | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
539 esac |
2943 | 540 ;; |
541 GenuineIntel) | |
542 case "$pfamily" in | |
543 3) proc=i386 iproc=386 ;; | |
544 4) proc=i486 iproc=486 ;; | |
545 5) proc=pentium iproc=586 ;; | |
3836 | 546 6|15) proc=i686 iproc=686 ;; |
2943 | 547 *) proc=pentium iproc=586 ;; |
548 esac | |
549 ;; | |
550 unknown) | |
551 case "$pfamily" in | |
552 3) proc=i386 iproc=386 ;; | |
553 4) proc=i486 iproc=486 ;; | |
554 *) proc=pentium iproc=586 ;; | |
555 esac | |
556 ;; | |
557 *) | |
558 proc=pentium iproc=586 ;; | |
559 esac | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
560 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
561 # check that gcc supports our cpu, if not, fallback to pentium |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
562 # LGB: check -mcpu and -march swithing step by step with enabling |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
563 # to fall back till 386. |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
564 |
2943 | 565 echocheck "GCC & CPU optimization abilities" |
566 cat > $TMPC << EOF | |
567 int main(void) { return 0; } | |
568 EOF | |
569 | |
2171 | 570 if test "$proc" = "k7" ; then |
2943 | 571 cc_check -march=$proc -mcpu=$proc || proc=athlon |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
572 fi |
2171 | 573 if test "$proc" = "athlon" ; then |
2943 | 574 cc_check -march=$proc -mcpu=$proc || proc=pentiumpro |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
575 fi |
2171 | 576 if test "$proc" = "k6" ; then |
2943 | 577 cc_check -march=$proc -mcpu=$proc || proc=k5 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
578 fi |
2171 | 579 if test "$proc" = "k5" ; then |
2943 | 580 cc_check -march=$proc -mcpu=$proc || proc=pentium |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
581 fi |
2171 | 582 if test "$proc" = "i686" ; then |
2943 | 583 cc_check -march=$proc -mcpu=$proc || proc=pentiumpro |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
584 fi |
2171 | 585 if test "$proc" = "pentiumpro" ; then |
2943 | 586 cc_check -march=$proc -mcpu=$proc || proc=pentium |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
587 fi |
2171 | 588 if test "$proc" = "pentium" ; then |
2943 | 589 cc_check -march=$proc -mcpu=$proc || proc=i486 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
590 fi |
2171 | 591 if test "$proc" = "i486" ; then |
2943 | 592 cc_check -march=$proc -mcpu=$proc || proc=i386 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
593 fi |
2171 | 594 if test "$proc" = "i386" ; then |
2943 | 595 cc_check -march=$proc -mcpu=$proc || proc=error |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
596 fi |
2171 | 597 if test "$proc" = "error" ; then |
2943 | 598 die "Your $_cc does not support even \"i386\" for '-march' and '-mcpu'." |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
599 fi |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
600 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
601 _march="-march=$proc" |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
602 _mcpu="-mcpu=$proc" |
2890
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
603 |
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
604 ## Gabucino : --target takes effect here (hopefully...) by overwriting |
2943 | 605 ## autodetected mcpu/march parameters |
2890
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
606 if test "$_target" ; then |
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
607 _march="-march=$host_arch" |
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
608 _mcpu="-mcpu=$host_arch" |
2943 | 609 proc="$_target" |
4637
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
610 # Note: this has to be extended |
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
611 case "$proc" in |
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
612 i386*) iproc=386 ;; |
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
613 i486*) iproc=486 ;; |
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
614 i586*) iproc=586 ;; |
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
615 i686*) iproc=686 ;; |
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
616 *) iproc=586 ;; |
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
617 esac |
2890
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
618 fi |
1db780ee8117
hmm this is probably a better place for the check, as only the
gabucino
parents:
2888
diff
changeset
|
619 |
2943 | 620 echores "$proc" |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
621 ;; |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
622 |
2943 | 623 sparc) |
624 _def_arch='#define ARCH_SPARC 1' | |
625 _target_arch='TARGET_ARCH_SPARC = yes' | |
626 _def_words_endian='#define WORDS_BIGENDIAN 1' | |
627 iproc='sparc' | |
628 proc='v8' | |
629 _march='' | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
630 _mcpu="-mcpu=$proc" |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
631 ;; |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
632 |
2943 | 633 arm) |
634 _def_arch="#define ARCH_ARM 1" | |
635 _target_arch='TARGET_ARCH_ARM = yes' | |
636 _def_words_endian='#undef WORDS_BIGENDIAN' | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
637 iproc=arm |
2943 | 638 proc='' |
639 _march='' | |
640 _mcpu='' | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
641 ;; |
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
642 |
2943 | 643 ppc) |
644 _def_arch='#define ARCH_PPC 1' | |
645 _target_arch='TARGET_ARCH_PPC = yes' | |
646 _def_words_endian='#define WORDS_BIGENDIAN 1' | |
647 iproc='ppc' | |
648 proc='' | |
649 _march='' | |
650 _mcpu='' | |
1739
064c0acb7c39
Added C++ compiler/runtime enviroment detection and enabled ppc detection.
atmos4
parents:
1718
diff
changeset
|
651 ;; |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
652 |
2943 | 653 alpha) |
654 _def_arch='#define ARCH_ALPHA 1' | |
655 _target_arch='TARGET_ARCH_ALPHA = yes' | |
656 _def_words_endian='#undef WORDS_BIGENDIAN' | |
657 iproc='alpha' | |
658 _march='' | |
4217
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
659 echocheck "GCC & CPU optimization abilities" |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
660 if test "$proc" = "ev68" ; then |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
661 cc_check -mcpu=$proc || proc=ev67 |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
662 fi |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
663 if test "$proc" = "ev67" ; then |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
664 cc_check -mcpu=$proc || proc=ev6 |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
665 fi |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
666 _mcpu="-mcpu=$proc" |
2b141fcd69dd
Patch by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>:
pl
parents:
4211
diff
changeset
|
667 echores "$proc" |
1908 | 668 ;; |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
669 |
2943 | 670 mips) |
671 _def_arch="#define ARCH_SGI_MIPS 1" | |
672 _target_arch="TARGET_ARCH_SGI_MIPS = yes" | |
673 _def_words_endian='#define WORDS_BIGENDIAN 1' | |
674 iproc='sgi-mips' | |
675 proc='' | |
676 _march='' | |
677 _mcpu='' | |
2450 | 678 ;; |
679 | |
2943 | 680 *) |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
681 echo "The architecture of your CPU ($host_arch) is not supported by this configure script" |
2190 | 682 echo "It seems noone has ported MPlayer to your OS or CPU type yet." |
683 die "unsupported architecture $host_arch" | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
684 ;; |
1 | 685 esac |
686 | |
2943 | 687 |
688 echocheck "binutils" | |
689 _binutils=no | |
690 $_as libac3/downmix/downmix_i386.S -o $TMPO > /dev/null 2>&1 && _binutils=yes | |
691 echores "$_binutils" | |
692 | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
693 if x86 ; then |
2943 | 694 extcheck() { |
695 if test "$1" = yes ; then | |
696 echocheck "kernel support of $2" | |
697 cat > $TMPC <<EOF | |
698 int main(void){__asm__ __volatile__ ("$3":::"memory");return(0);} | |
699 EOF | |
2467 | 700 |
2943 | 701 if ( cc_check && $TMPO ) > /dev/null 2>&1 ; then |
702 echores "yes" | |
703 return 0 | |
704 else | |
705 echores "failed" | |
706 echo "It seems that your kernel does not correctly support $2." | |
707 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!" | |
708 return 1 | |
709 fi | |
710 fi | |
711 return 1 | |
712 } | |
1 | 713 |
3051 | 714 extcheck $_mmx "mmx" "emms" || _mmx=no |
715 extcheck $_3dnow "3dnow" "femms" || _3dnow=no | |
716 extcheck $_3dnowex "3dnowex" "pswapd %%mm0, %%mm0" || _3dnowex=no | |
717 extcheck $_mmx2 "mmx2" "sfence" || _mmx2=no | |
718 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _sse=no | |
719 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _sse2=no | |
2943 | 720 echocheck "mtrr support" |
721 echores "$_mtrr" | |
722 | |
723 fi | |
724 | |
1 | 725 |
2943 | 726 _prefix="/usr/local" |
727 | |
3206 | 728 # GOTCHA: the variables below defines the default behavior for autodetection |
729 # and have - unless stated otherwise - at least 2 states : yes no | |
730 # If autodetection is available then the third state is: auto | |
2943 | 731 _libavcodec=auto |
3127
59ac428ae68d
Disable problematic ffmpeg.so support by default and remove die on 2.2.x
atmos4
parents:
3089
diff
changeset
|
732 _libavcodecso=no # changed default to no as it causes problems - atmos |
3853 | 733 _mp1e=auto |
3896 | 734 _mencoder=yes |
2943 | 735 _x11=auto |
3206 | 736 _dga=auto # 1 2 no auto |
2943 | 737 _xv=auto |
738 _sdl=auto | |
3276 | 739 _nas=auto |
2943 | 740 _png=auto |
741 _gl=auto | |
742 _ggi=auto | |
743 _aa=auto | |
744 _svga=auto | |
4560 | 745 _vesa=auto |
4019
079177a400cb
fbdev autodetection enabled (requires linux && /dev/fb0)
pl
parents:
4003
diff
changeset
|
746 _fbdev=auto |
4209
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
747 _fbdev_nocopy=no |
2943 | 748 _dvb=auto |
749 _dxr3=auto | |
750 _iconv=auto | |
3015 | 751 _rtc=auto |
2943 | 752 _ossaudio=auto |
753 _mad=auto | |
754 _vorbis=auto | |
755 _css=auto | |
756 _dvdread=auto | |
757 _xanim=auto | |
758 _xinerama=auto | |
759 _mga=auto | |
760 _xmga=auto | |
761 _vm=auto | |
762 _mlib=auto | |
763 _sgiaudio=auto | |
764 _sunaudio=auto | |
765 _alsa=auto | |
766 _fastmemcpy=yes | |
767 _win32=auto | |
3451 | 768 _dshow=yes |
3206 | 769 _select=yes |
3242
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
770 _tv=yes |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
771 _tv_v4l=auto |
3690
c42f1e391c5f
10l? streaming must be yes, auto is not enough because of Makefile
arpi
parents:
3689
diff
changeset
|
772 _streaming=yes |
4089 | 773 _vidix=yes |
4785 | 774 _new_input=yes |
4507
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
775 _joystick=no |
4678 | 776 _xvid=auto |
2943 | 777 _divx4linux=auto |
4489 | 778 _opendivx=yes |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
779 _lirc=auto |
2943 | 780 _gui=no |
2945 | 781 _termcap=auto |
3007 | 782 _termios=auto |
2943 | 783 _3dfx=no |
784 _tdfxfb=no | |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
785 _directfb=auto |
4211
2c1ca684ff04
zr en/disable, libjpeg detection - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4209
diff
changeset
|
786 _zr=no |
2961 | 787 _largefiles=no |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
788 _vo2=no |
2943 | 789 _language=en |
3004 | 790 _shm=auto |
4801
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
791 _linux_devfs=no |
2943 | 792 |
793 for ac_option do | |
794 case "$ac_option" in | |
795 # Skip 1st pass | |
796 --target=*) ;; | |
797 --cc=*) ;; | |
798 --as=*) ;; | |
4637
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
799 --enable-gcc-checking) ;; |
2943 | 800 --disable-gcc-checking) ;; |
2989 | 801 --enable-static*) ;; |
2988 | 802 --disable-static*) ;; |
2943 | 803 --with-extraincdir=*) ;; |
804 --with-extralibdir=*) ;; | |
805 | |
2988 | 806 |
2943 | 807 # Real 2nd pass |
3079 | 808 --enable-mencoder) _mencoder=yes ;; |
809 --disable-mencoder) _mencoder=no ;; | |
2943 | 810 --enable-x11) _x11=yes ;; |
811 --disable-x11) _x11=no ;; | |
812 --enable-xv) _xv=yes ;; | |
813 --disable-xv) _xv=no ;; | |
814 --enable-sdl) _sdl=yes ;; | |
815 --disable-sdl) _sdl=no ;; | |
3276 | 816 --enable-nas) _nas=yes ;; |
817 --disable-nas) _nas=no ;; | |
2943 | 818 --enable-png) _png=yes ;; |
819 --disable-png) _png=no ;; | |
820 --enable-gl) _gl=yes ;; | |
821 --disable-gl) _gl=no ;; | |
822 --enable-ggi) _ggi=yes ;; | |
823 --disable-ggi) _ggi=no ;; | |
824 --enable-aa) _aa=yes ;; | |
825 --disable-aa) _aa=no ;; | |
826 --enable-svga) _svga=yes ;; | |
827 --disable-svga) _svga=no ;; | |
4560 | 828 --enable-vesa) _vesa=yes ;; |
829 --disable-vesa) _vesa=no ;; | |
2943 | 830 --enable-fbdev) _fbdev=yes ;; |
4209
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
831 --enable-fbdev=nocopy) _fbdev=yes; _fbdev_nocopy=yes ;; |
2943 | 832 --disable-fbdev) _fbdev=no ;; |
833 --enable-dvb) _dvb=yes ;; | |
834 --disable-dvb) _dvb=no ;; | |
835 --enable-dxr3) _dxr3=yes ;; | |
836 --disable-dxr3) _dxr3=no ;; | |
837 --enable-iconv) _iconv=yes ;; | |
838 --disable-iconv) _iconv=no ;; | |
3015 | 839 --enable-rtc) _rtc=yes ;; |
840 --disable-rtc) _rtc=no ;; | |
3853 | 841 --enable-mp1e) _mp1e=yes ;; |
3432 | 842 --disable-mp1e) _mp1e=no ;; |
2943 | 843 --enable-ossaudio) _ossaudio=yes ;; |
844 --disable-ossaudio) _ossaudio=no ;; | |
845 --enable-mad) _mad=yes ;; | |
846 --disable-mad) _mad=no ;; | |
847 --enable-vorbis) _vorbis=yes ;; | |
848 --disable-vorbis) _vorbis=no ;; | |
849 --enable-css) _css=yes ;; | |
850 --disable-css) _css=no ;; | |
851 --enable-dvdread) _dvdread=yes ;; | |
852 --disable-dvdread) _dvdread=no ;; | |
853 --enable-xanim) _xanim=yes ;; | |
854 --disable-xanim) _xanim=no ;; | |
855 --enable-xinerama) _xinerama=yes ;; | |
856 --disable-xinerama) _xinerama=no ;; | |
857 --enable-mga) _mga=yes ;; | |
858 --disable-mga) _mga=no ;; | |
859 --enable-xmga) _xmga=yes ;; | |
860 --disable-xmga) _xmga=no ;; | |
861 --enable-vm) _vm=yes ;; | |
862 --disable-vm) _vm=no ;; | |
863 --enable-mlib) _mlib=yes ;; | |
864 --disable-mlib) _mlib=no ;; | |
865 --enable-sunaudio) _sunaudio=yes ;; | |
866 --disable-sunaudio) _sunaudio=no ;; | |
867 --enable-sgiaudio) _sgiaudio=yes ;; | |
868 --disable-sgiaudio) _sgiaudio=no ;; | |
869 --enable-alsa) _alsa=yes ;; | |
870 --disable-alsa) _alsa=no ;; | |
871 --enable-tv) _tv=yes ;; | |
872 --disable-tv) _tv=no ;; | |
3242
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
873 --enable-tv-v4l) _tv_v4l=yes ;; |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
874 --disable-tv-v4l) _tv_v4l=no ;; |
2943 | 875 --enable-fastmemcpy) _fastmemcpy=yes ;; |
876 --disable-fastmemcpy) _fastmemcpy=no ;; | |
877 --enable-streaming) _streaming=yes ;; | |
878 --disable-streaming) _streaming=no ;; | |
4089 | 879 --enable-vidix) _vidix=yes ;; |
880 --disable-vidix) _vidix=no ;; | |
4543 | 881 --enable-new-input) _new_input=yes ;; |
882 --disable-new-input) _new_input=no ;; | |
883 --enable-joystick) _joystick=yes ;; | |
884 --disable-joystick) _joystick=no ;; | |
4678 | 885 --enable-xvid) _xvid=yes ;; |
886 --disable-xvid) _xvid=no ;; | |
2943 | 887 --enable-divx4linux) _divx4linux=yes ;; |
888 --disable-divx4linux) _divx4linux=no ;; | |
4489 | 889 --enable-opendivx) _opendivx=yes ;; |
890 --disable-opendivx) _opendivx=no ;; | |
2943 | 891 --enable-lirc) _lirc=yes ;; |
892 --disable-lirc) _lirc=no ;; | |
893 --enable-gui) _gui=yes ;; | |
894 --disable-gui) _gui=no ;; | |
895 --enable-termcap) _termcap=yes ;; | |
896 --disable-termcap) _termcap=no ;; | |
3007 | 897 --enable-termios) _termios=yes ;; |
898 --disable-termios) _termios=no ;; | |
2943 | 899 --enable-3dfx) _3dfx=yes ;; |
900 --disable-3dfx) _3dfx=no ;; | |
901 --enable-tdfxfb) _tdfxfb=yes ;; | |
902 --disable-tdfxfb) _tdfxfb=no ;; | |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
903 --enable-directfb) _directfb=yes ;; |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
904 --disable-directfb) _directfb=no ;; |
4211
2c1ca684ff04
zr en/disable, libjpeg detection - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4209
diff
changeset
|
905 --enable-zr) _zr=yes ;; |
4543 | 906 --disable-zr) _zr=no ;; |
2943 | 907 --enable-mtrr) _mtrr=yes ;; |
908 --disable-mtrr) _mtrr=no ;; | |
2961 | 909 --enable-largefiles) _largefiles=yes ;; |
2962 | 910 --disable-largefiles) _largefiles=no ;; |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
911 --enable-vo2) _vo2=yes ;; |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
912 --disable-vo2) _vo2=no ;; |
3004 | 913 --enable-shm) _shm=yes ;; |
914 --disable-shm) _shm=no ;; | |
3206 | 915 --enable-select) _select=yes ;; |
916 --disable-select) _select=no ;; | |
4801
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
917 --enable-linux-devfs) _linux_devfs=yes ;; |
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
918 --disable-linux-devfs) _linux_devfs=no ;; |
3206 | 919 |
920 --enable-dga) _dga=auto ;; # as we don't know if it's 1 or 2 | |
921 --enable-dga=*) _dga=`echo $ac_option | cut -d '=' -f 2` ;; | |
922 --disable-dga) _dga=no ;; | |
2943 | 923 |
924 --language=*) | |
925 LINGUAS=`echo $ac_option | cut -d '=' -f 2` | |
926 ;; | |
927 | |
928 --with-win32libdir=*) | |
929 _win32libdir=`echo $ac_option | cut -d '=' -f 2` | |
930 _win32=yes | |
931 ;; | |
932 --with-xanimlibdir=*) | |
933 _xanimlibdir=`echo $ac_option | cut -d '=' -f 2` | |
934 _xanim=yes | |
935 ;; | |
936 --with-csslibdir=*) | |
937 _csslibdir=`echo $ac_option | cut -d '=' -f 2` | |
938 _css=yes | |
939 ;; | |
940 --with-mlibdir=*) | |
941 _mlibdir=`echo $ac_option | cut -d '=' -f 2` | |
942 _mlib=yes | |
943 ;; | |
944 | |
4637
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
945 --disable-profile) |
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
946 _profile= |
bdb95c9fd709
added options for completeness: --enable-gcc-checking, --disable-profile
pl
parents:
4562
diff
changeset
|
947 ;; |
2943 | 948 --enable-profile) |
949 _profile='-p' | |
950 ;; | |
951 --enable-debug) | |
952 _debug='-g' | |
953 ;; | |
954 --enable-debug=*) | |
955 _debug=`echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2` | |
956 ;; | |
957 | |
958 --enable-sse) _sse=yes ;; | |
959 --disable-sse) _sse=no ;; | |
3841 | 960 --enable-sse2) _sse2=yes ;; |
961 --disable-sse2) _sse2=no ;; | |
2943 | 962 --enable-mmx2) _mmx2=yes ;; |
963 --disable-mmx2) _mmx2=no ;; | |
964 --enable-3dnow) _3dnow=yes ;; | |
965 --disable-3dnow) _3dnow=no _3dnowex=no ;; | |
966 --enable-3dnowex) _3dnow=yes _3dnowex=yes ;; | |
967 --disable-3dnowex) _3dnowex=no ;; | |
968 --enable-mmx) _mmx=yes ;; | |
969 --disable-mmx) # without mmx 3Dnow! and stuff is also not possible | |
970 _3dnow=no _3dnowex=no _mmx=no _mmx2=no ;; | |
971 | |
972 --enable-win32) _win32=yes ;; | |
973 --disable-win32) _win32=no _dshow=no ;; | |
974 --enable-dshow) _win32=yes _dshow=yes ;; | |
975 --disable-dshow) _dshow=no ;; | |
976 | |
977 --with-x11incdir=*) | |
978 _inc_x11=-I`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -I,g'` | |
979 ;; | |
980 --with-x11libdir=*) | |
981 _ld_x11=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` | |
982 ;; | |
4678 | 983 --with-xvidcore=*) |
984 _xvidcore=`echo $ac_option | cut -d '=' -f 2` | |
985 ;; | |
2943 | 986 --with-sdl-config=*) |
987 _sdlconfig=`echo $ac_option | cut -d '=' -f 2` | |
988 ;; | |
989 --with-gtk-config=*) | |
990 _gtkconfig=`echo $ac_option | cut -d '=' -f 2` | |
991 ;; | |
992 --with-glib-config=*) | |
993 _glibconfig=`echo $ac_option | cut -d '=' -f 2` | |
994 ;; | |
995 --with-madlibdir=*) | |
996 _ld_mad=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` | |
997 ;; | |
998 | |
999 --prefix=*) | |
1000 _prefix=`echo $ac_option | cut -d '=' -f 2` | |
1001 ;; | |
1002 --datadir=*) | |
1003 _datadir=`echo $ac_option | cut -d '=' -f 2` | |
1004 ;; | |
3747 | 1005 --confdir=*) |
1006 _confdir=`echo $ac_option | cut -d '=' -f 2` | |
1007 ;; | |
2943 | 1008 |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1009 |
2943 | 1010 *) |
1011 echo "Unknown parameter: $ac_option" | |
1012 ;; | |
1013 | |
1014 esac | |
1015 done | |
1016 | |
1017 # Atmos: moved this here, to be correct, if --prefix is specified | |
4543 | 1018 test -z "$_datadir" && _datadir="$_prefix/share/mplayer" |
1019 test -z "$_confdir" && _confdir="$_datadir" | |
1020 test -z "$_libdir" && _libdir="$_prefix/lib/mplayer" | |
1021 test -z "$_mlibdir" && _mlibdir="$MLIBHOME" | |
2943 | 1022 |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
1023 if x86 ; then |
2943 | 1024 # Checking assembler (_as) compatibility... |
1025 # Added workaround for older as that reads from stdin by default - atmos | |
1026 as_version=`echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p'` | |
1027 echocheck "assembler ($_as $as_version)" | |
1028 | |
1029 _pref_as_version='2.9.1' | |
1030 echo 'nop' > $TMPS | |
1031 if test "$_mmx" = yes ; then | |
1032 echo 'emms' >> $TMPS | |
1033 fi | |
1034 if test "$_3dnow" = yes ; then | |
1035 _pref_as_version='2.10.1' | |
1036 echo 'femms' >> $TMPS | |
1037 fi | |
1038 if test "$_3dnowex" = yes ; then | |
1039 _pref_as_version='2.10.1' | |
1040 echo 'pswapd %mm0, %mm0' >> $TMPS | |
1041 fi | |
1042 if test "$_mmx2" = yes ; then | |
1043 _pref_as_version='2.10.1' | |
1044 echo 'movntq %mm0, (%eax)' >> $TMPS | |
1045 fi | |
1046 if test "$_sse" = yes ; then | |
1047 _pref_as_version='2.10.1' | |
1048 echo 'xorps %xmm0, %xmm0' >> $TMPS | |
1049 fi | |
1050 #if test "$_sse2" = yes ; then | |
1051 # _pref_as_version='2.11' | |
1052 # echo 'xorpd %xmm0, %xmm0' >> $TMPS | |
1053 #fi | |
1054 $_as $TMPS -o $TMPO > /dev/null 2>&1 || as_verc_fail=yes | |
1055 | |
1056 if test "$as_verc_fail" != yes ; then | |
1057 echores "ok" | |
1058 else | |
1059 echores "failed" | |
1060 echo "Upgrade binutils to ${_pref_as_version} ..." | |
1061 die "obsolete binutils version" | |
1062 fi | |
1063 fi | |
1064 | |
1065 _def_mmx='#undef HAVE_MMX' | |
1066 test "$_mmx" = yes && _def_mmx='#define HAVE_MMX 1' | |
1067 _def_mmx2='#undef HAVE_MMX2' | |
1068 test "$_mmx2" = yes && _def_mmx2='#define HAVE_MMX2 1' | |
1069 _def_3dnow='#undef HAVE_3DNOW' | |
1070 test "$_3dnow" = yes && _def_3dnow='#define HAVE_3DNOW 1' | |
1071 _def_3dnowex='#undef HAVE_3DNOWEX' | |
1072 test "$_3dnowex" = yes && _def_3dnowex='#define HAVE_3DNOWEX 1' | |
1073 _def_sse='#undef HAVE_SSE' | |
1074 test "$_sse" = yes && _def_sse='#define HAVE_SSE 1' | |
3841 | 1075 _def_sse2='#undef HAVE_SSE2' |
1076 test "$_sse2" = yes && _def_sse2='#define HAVE_SSE2 1' | |
2943 | 1077 |
1078 | |
1079 # Checking kernel version... | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
1080 if x86 && linux ; then |
2943 | 1081 _k_verc_problem=no |
1082 kernel_version=`uname -r 2>&1` | |
1083 echocheck "$system_name kernel version" | |
1084 case "$kernel_version" in | |
1085 '') kernel_version="?.??"; _k_verc_fail=yes;; | |
1086 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*) | |
1087 _k_verc_problem=yes;; | |
1088 esac | |
1089 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then | |
1090 _k_verc_fail=yes | |
1091 fi | |
1092 if test "$_k_verc_fail" ; then | |
1093 echores "$kernel_version, fail" | |
1094 echo "WARNING! If you want to run mplayer on this system, get prepared for problems!" | |
3127
59ac428ae68d
Disable problematic ffmpeg.so support by default and remove die on 2.2.x
atmos4
parents:
3089
diff
changeset
|
1095 echo "2.2.x has limited SSE support. Upgrade kernel or use --disable-sse if you" |
59ac428ae68d
Disable problematic ffmpeg.so support by default and remove die on 2.2.x
atmos4
parents:
3089
diff
changeset
|
1096 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly supports" |
59ac428ae68d
Disable problematic ffmpeg.so support by default and remove die on 2.2.x
atmos4
parents:
3089
diff
changeset
|
1097 echo "SSE, but you have been warned! If you are using kernel older then 2.2.x you must" |
59ac428ae68d
Disable problematic ffmpeg.so support by default and remove die on 2.2.x
atmos4
parents:
3089
diff
changeset
|
1098 echo "upgrade it to get SSE support!" |
59ac428ae68d
Disable problematic ffmpeg.so support by default and remove die on 2.2.x
atmos4
parents:
3089
diff
changeset
|
1099 # die "old kernel for this cpu" # works fine on some 2.2.x so don't die (later check will test) |
2943 | 1100 else |
1101 echores "$kernel_version, ok" | |
1102 fi | |
1103 fi | |
1104 | |
4172 | 1105 # checking for a working awk, I'm using mawk first, because it's fastest - atmos |
1106 _awk= | |
4108 | 1107 if test "$_vidix" = yes ; then |
4182 | 1108 _awk_verc_fail=yes |
1109 echocheck "awk" | |
4172 | 1110 for _awk in mawk gawk nawk awk; do |
4183 | 1111 if ( $_awk 'BEGIN{testme();}function testme(){print"";}' ) >> "$TMPLOG" 2>&1; then |
4182 | 1112 _awk_verc_fail=no |
4172 | 1113 break |
1114 fi | |
1115 done | |
4182 | 1116 test "$_awk_verc_fail" = yes && _awk=no |
1117 echores "$_awk" | |
1118 if test "$_awk_verc_fail" = yes; then | |
4172 | 1119 echo "VIDIX needs Awk, but there was no working implementation found!" |
1120 echo "Try the GNU implementation, which can be downloaded from:" | |
4120 | 1121 echo "ftp://ftp.gnu.org/gnu/gawk/" |
4172 | 1122 echo "If you don't need vidix, you can use configure --disable-vidix instead." |
4108 | 1123 exit |
1124 fi | |
1125 fi | |
2943 | 1126 |
1127 | |
1128 ###################### | |
1129 # MAIN TESTS GO HERE # | |
1130 ###################### | |
1131 | |
1132 | |
3189
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1133 echocheck "extra headers" |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1134 if test "$_extraincdir" ; then |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1135 echores "$_extraincdir" |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1136 else |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1137 echores "none" |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1138 fi |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1139 |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1140 |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1141 echocheck "extra libs" |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1142 if test "$_extralibdir" ; then |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1143 echores "$_extralibdir" |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1144 else |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1145 echores "none" |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1146 fi |
2943 | 1147 |
1148 | |
1149 echocheck "kstat" | |
1150 cat > $TMPC << EOF | |
3029 | 1151 #include <kstat.h> |
1152 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; } | |
2943 | 1153 EOF |
1154 _kstat=no | |
1155 cc_check -lkstat && _kstat=yes | |
1156 if test "$_kstat" = yes ; then | |
3065 | 1157 _ld_arch="-lkstat $_ld_arch" |
2943 | 1158 fi |
1159 if test "$_kstat" = yes ; then | |
1160 _def_kstat="#define HAVE_LIBKSTAT 1" | |
1161 else | |
1162 _def_kstat="#undef HAVE_LIBKSTAT" | |
1163 fi | |
1164 echores "$_kstat" | |
1165 | |
1166 | |
3029 | 1167 echocheck "posix4" |
3028
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1168 # required for nanosleep on some systems |
2948 | 1169 cat > $TMPC << EOF |
3029 | 1170 #include <time.h> |
1171 int main(void) { (void) nanosleep(0, 0); return 0; } | |
2948 | 1172 EOF |
2943 | 1173 _posix4=no |
1174 cc_check -lposix4 && _posix4=yes | |
1175 if test "$_posix4" = yes ; then | |
3065 | 1176 _ld_arch="-lposix4 $_ld_arch" |
2943 | 1177 fi |
1178 echores "$_posix4" | |
1179 | |
1180 | |
3089 | 1181 echocheck "nanosleep" |
1182 # also check for nanosleep | |
1183 cat > $TMPC << EOF | |
1184 #include <time.h> | |
1185 int main(void) { (void) nanosleep(0, 0); return 0; } | |
1186 EOF | |
1187 _nanosleep=no | |
1188 cc_check $_ld_arch && _nanosleep=yes | |
1189 if test "$_nanosleep" = yes ; then | |
1190 _def_nanosleep='#define HAVE_NANOSLEEP 1' | |
1191 else | |
1192 _def_nanosleep='#undef HAVE_NANOSLEEP' | |
1193 fi | |
1194 echores "$_nanosleep" | |
1195 | |
1196 | |
2943 | 1197 echocheck "socklib" |
1198 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl): | |
1199 cat > $TMPC << EOF | |
3029 | 1200 #include <netdb.h> |
1201 int main(void) { (void) gethostbyname(0); return 0; } | |
2943 | 1202 EOF |
3869 | 1203 cc_check -lsocket && _ld_sock="-lsocket" |
1204 cc_check -lnsl && _ld_sock="-lnsl" | |
1205 cc_check -lsocket -lnsl && _ld_sock="-lsocket -lnsl" | |
2945 | 1206 if test "$_ld_sock" ; then |
3248 | 1207 echores "yes (using $_ld_sock)" |
2945 | 1208 else |
3248 | 1209 echores "no" |
2945 | 1210 fi |
2943 | 1211 |
1212 | |
3903 | 1213 echocheck "inet_pton()" |
1214 cat > $TMPC << EOF | |
1215 #include <sys/types.h> | |
1216 #include <sys/socket.h> | |
1217 #include <arpa/inet.h> | |
1218 int main(void) { (void) inet_pton(0, 0, 0); return 0; } | |
1219 EOF | |
1220 if cc_check $_ld_sock ; then | |
1221 # NOTE: Linux has libresolv but does not need it | |
1222 : | |
1223 echores "yes (using $_ld_sock)" | |
1224 elif cc_check $_ld_sock -lresolv ; then | |
1225 # NOTE: needed for SunOS at least | |
1226 _ld_sock="$_ld_sock -lresolv" | |
1227 echores "yes (using $_ld_sock)" | |
1228 else | |
1229 echores "no (=> streaming support disabled)" | |
1230 _streaming=no | |
1231 fi | |
1232 | |
4003
92c59012249d
stdint.h replaced by inttypes.h (used more frequently in the sources)
pl
parents:
3993
diff
changeset
|
1233 echocheck "inttypes.h (required)" |
3919 | 1234 cat > $TMPC << EOF |
4003
92c59012249d
stdint.h replaced by inttypes.h (used more frequently in the sources)
pl
parents:
3993
diff
changeset
|
1235 #include <inttypes.h> |
3919 | 1236 int main(void) { return 0; } |
1237 EOF | |
4003
92c59012249d
stdint.h replaced by inttypes.h (used more frequently in the sources)
pl
parents:
3993
diff
changeset
|
1238 _inttypes=no |
92c59012249d
stdint.h replaced by inttypes.h (used more frequently in the sources)
pl
parents:
3993
diff
changeset
|
1239 cc_check && _inttypes=yes |
92c59012249d
stdint.h replaced by inttypes.h (used more frequently in the sources)
pl
parents:
3993
diff
changeset
|
1240 if test "$_inttypes" = yes ; then |
92c59012249d
stdint.h replaced by inttypes.h (used more frequently in the sources)
pl
parents:
3993
diff
changeset
|
1241 # nothing to do |
92c59012249d
stdint.h replaced by inttypes.h (used more frequently in the sources)
pl
parents:
3993
diff
changeset
|
1242 : |
3919 | 1243 else |
4003
92c59012249d
stdint.h replaced by inttypes.h (used more frequently in the sources)
pl
parents:
3993
diff
changeset
|
1244 die "cannot find header inttypes.h (see in DOC/faq.html)" |
3919 | 1245 fi |
4003
92c59012249d
stdint.h replaced by inttypes.h (used more frequently in the sources)
pl
parents:
3993
diff
changeset
|
1246 echores "$_inttypes" |
3919 | 1247 |
1248 | |
2943 | 1249 echocheck "malloc.h" |
1250 cat > $TMPC << EOF | |
1251 #include <malloc.h> | |
3029 | 1252 int main(void) { (void) malloc(0); return 0; } |
2943 | 1253 EOF |
1254 _malloc=no | |
1255 cc_check && _malloc=yes | |
1256 if test "$_malloc" = yes ; then | |
1257 _def_malloc='#define HAVE_MALLOC_H 1' | |
1258 else | |
1259 _def_malloc='#undef HAVE_MALLOC_H' | |
1260 fi | |
1261 # malloc.h emits a warning in FreeBSD | |
1262 freebsd && _def_malloc='#undef HAVE_MALLOC_H' | |
1263 echores "$_malloc" | |
1264 | |
1265 | |
1266 echocheck "memalign()" | |
1267 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ? | |
1268 cat > $TMPC << EOF | |
1269 #include <malloc.h> | |
3029 | 1270 int main (void) { (void) memalign(64, sizeof(char)); return 0; } |
2943 | 1271 EOF |
1272 _memalign=no | |
1273 cc_check && _memalign=yes | |
1274 if test "$_memalign" = yes ; then | |
1275 _def_memalign='#define HAVE_MEMALIGN 1' | |
1276 else | |
1277 _def_memalign='#undef HAVE_MEMALIGN' | |
1278 fi | |
1279 echores "$_memalign" | |
1280 | |
1281 | |
1282 echocheck "alloca.h" | |
1283 cat > $TMPC << EOF | |
1284 #include <alloca.h> | |
3029 | 1285 int main(void) { (void) alloca(0); return 0; } |
2943 | 1286 EOF |
1287 _alloca=no | |
1288 cc_check && _alloca=yes | |
1289 if cc_check ; then | |
1290 _def_alloca='#define HAVE_ALLOCA_H 1' | |
1291 else | |
1292 _def_alloca='#undef HAVE_ALLOCA_H' | |
1293 fi | |
1294 echores "$_alloca" | |
1295 | |
1296 | |
1297 echocheck "mman.h" | |
1298 cat > $TMPC << EOF | |
1299 #include <sys/types.h> | |
1300 #include <sys/mman.h> | |
3029 | 1301 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; } |
2943 | 1302 EOF |
1303 _mman=no | |
1304 cc_check && _mman=yes | |
1305 if test "$_mman" = yes ; then | |
1306 _def_mman='#define HAVE_SYS_MMAN_H 1' | |
1307 else | |
1308 _def_mman='#undef HAVE_SYS_MMAN_H' | |
1309 fi | |
1310 echores "$_mman" | |
1311 | |
1312 | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1313 echocheck "dynamic loader" |
2943 | 1314 cat > $TMPC << EOF |
1315 #include <dlfcn.h> | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1316 int main(void) { dlopen(0, 0); dlclose(0); dlsym(0, 0); return 0; } |
2943 | 1317 EOF |
1318 _dl=no | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1319 if cc_check ; then |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1320 _dl=yes |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1321 elif cc_check -ldl ; then |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1322 _dl=yes |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1323 _ld_dl='-ldl' |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1324 fi |
2943 | 1325 if test "$_dl" = yes ; then |
1326 _def_dl='#define HAVE_LIBDL 1' | |
1327 else | |
1328 _def_dl='#undef HAVE_LIBDL' | |
1329 fi | |
1330 echores "$_dl" | |
1331 | |
3004 | 1332 |
3061
6d8116bbf3b2
-rdynamic is only needed on bsd's (well... it was the case in C1)
pl
parents:
3057
diff
changeset
|
1333 #echocheck "dynamic linking" |
3065 | 1334 # FIXME !! make this dynamic detection to work and modify at the end (search _ld_dl_dynamic) |
3028
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1335 # also gcc flags are different, but ld flags aren't (-Bdynamic/-Bstatic/-Bsymbolic) |
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1336 #cat > $TMPC << EOF |
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1337 #int main(void) { return 0; } |
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1338 #EOF |
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1339 #if cc_check -rdynamic ; then |
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1340 # _ld_dl_dynamic='-rdynamic' |
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1341 #elif cc_check -Bdynamic ; then |
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1342 # _ld_dl_dynamic='-Bdynamic' |
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1343 #elif cc_check ; then |
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1344 # _ld_dl_dynamic='' |
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1345 #fi |
3061
6d8116bbf3b2
-rdynamic is only needed on bsd's (well... it was the case in C1)
pl
parents:
3057
diff
changeset
|
1346 #echores "using $_ld_dl_dynamic" |
3028
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1347 |
3bcd9ad27b6d
added dynamic linking flags runtime detection (-rdynamic - also now MPlayer compiles and runs fine under QNX)
alex
parents:
3022
diff
changeset
|
1348 |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1349 echocheck "pthread" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1350 cat > $TMPC << EOF |
3001 | 1351 #include <pthread.h> |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1352 void* func(void *arg) { return arg; } |
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1353 int main(void) { pthread_t tid; return pthread_create (&tid, 0, func, 0) == 0 ? 0 : 1; } |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1354 EOF |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1355 if ( cc_check && $TMPO ) ; then # QNX |
3010 | 1356 _ld_pthread='' |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1357 elif ( cc_check -lpthread && $TMPO ) ; then |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1358 _ld_pthread='-lpthread' |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1359 elif ( cc_check -pthread && $TMPO ) ; then |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1360 _ld_pthread='-pthread' |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1361 else |
4209
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1362 if test "$_ld_static" ; then |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1363 # for crosscompilation, we cannot execute the program, be happy if we can link statically |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1364 if ( cc_check -lpthread ) ; then |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1365 _ld_pthread='-lpthread' |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1366 elif ( cc_check -pthread ) ; then |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1367 _ld_pthread='-pthread' |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1368 else |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1369 die "Static lib pthread not found. (needed by windows and networking stuff)" |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1370 fi |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1371 else |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1372 die "Lib pthread not found. (needed by windows and networking stuff)" |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1373 fi |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1374 fi |
3248 | 1375 echores "yes (using $_ld_pthread)" |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1376 |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
1377 |
2943 | 1378 echocheck "sys/soundcard.h" |
1379 cat > $TMPC << EOF | |
1380 #include <sys/soundcard.h> | |
1381 int main(void) { return 0; } | |
1382 EOF | |
1383 _sys_soundcard=no | |
1384 cc_check && _sys_soundcard=yes | |
1385 if test "$_sys_soundcard" = yes ; then | |
1386 _def_sys_soundcard='#define HAVE_SYS_SOUNDCARD_H 1' | |
1387 else | |
1388 _def_sys_soundcard='#undef HAVE_SYS_SOUNDCARD_H' | |
1389 fi | |
1390 echores "$_sys_soundcard" | |
1391 | |
1392 | |
1393 echocheck "termcap" | |
2948 | 1394 if test "$_termcap" = auto ; then |
2943 | 1395 cat > $TMPC <<EOF |
1396 int main(void) { return 0; } | |
1397 EOF | |
3161 | 1398 _termcap=no |
2948 | 1399 cc_check -ltermcap && _termcap=yes |
2943 | 1400 fi |
1401 if test "$_termcap" = yes ; then | |
1402 _def_termcap='#define USE_TERMCAP 1' | |
1403 _ld_termcap='-ltermcap' | |
1404 else | |
1405 _def_termcap='#undef USE_TERMCAP' | |
1406 fi | |
1407 echores "$_termcap" | |
1408 | |
1409 | |
3007 | 1410 echocheck "termios" |
1411 if test "$_termios" = auto ; then | |
1412 cat > $TMPC <<EOF | |
1413 #include <sys/termios.h> | |
1414 int main(void) { return 0; } | |
1415 EOF | |
3161 | 1416 _termios=no |
3007 | 1417 cc_check && _termios=yes |
3281
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1418 _def_termios_h_name='sys/termios.h' |
3007 | 1419 fi |
3281
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1420 # second test: |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1421 if test "$_termios" = no ; then |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1422 cat > $TMPC <<EOF |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1423 #include <termios.h> |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1424 int main(void) { return 0; } |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1425 EOF |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1426 _termios=no |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1427 cc_check && _termios=yes |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1428 _def_termios_h_name='termios.h' |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1429 fi |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1430 |
3007 | 1431 if test "$_termios" = yes ; then |
3035 | 1432 _def_termios='#define HAVE_TERMIOS 1' |
3281
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1433 _def_termios_h='#undef HAVE_TERMIOS_H' |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1434 _def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H' |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1435 |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1436 if test "$_def_termios_h_name" = 'sys/termios.h' ; then |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1437 _def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1' |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1438 elif test "$_def_termios_h_name" = 'termios.h' ; then |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1439 _def_termios_h='#define HAVE_TERMIOS_H 1' |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1440 fi |
3902 | 1441 echores "yes (using $_def_termios_h_name)" |
3281
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1442 else |
3035 | 1443 _def_termios='#undef HAVE_TERMIOS' |
3281
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
1444 _def_termios_h_name='' |
3902 | 1445 echores "no" |
3007 | 1446 fi |
1447 | |
1448 | |
3004 | 1449 echocheck "shm" |
3005 | 1450 if test "$_shm" = auto ; then |
1451 cat > $TMPC << EOF | |
3007 | 1452 #include <sys/types.h> |
3004 | 1453 #include <sys/shm.h> |
1454 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; } | |
1455 EOF | |
3161 | 1456 _shm=no |
3005 | 1457 cc_check && _shm=yes |
1458 fi | |
3004 | 1459 if test "$_shm" = yes ; then |
1460 _def_shm='#define HAVE_SHM 1' | |
1461 else | |
1462 _def_shm='#undef HAVE_SHM' | |
1463 fi | |
1464 echores "$_shm" | |
1465 | |
4801
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
1466 # XXX: FIXME, add runtime checking |
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
1467 echocheck "linux devfs" |
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
1468 echores "$_linux_devfs" |
3004 | 1469 |
2943 | 1470 echocheck "3dfx" |
1471 if test "$_3dfx" = yes ; then | |
1472 _def_3dfx='#define HAVE_3DFX 1' | |
1473 _vosrc="$_vosrc vo_3dfx.c" | |
3161 | 1474 _vomodules="3dfx $_vomodules" |
2943 | 1475 else |
1476 _def_3dfx='#undef HAVE_3DFX' | |
1477 fi | |
1478 echores "$_3dfx" | |
1479 | |
1480 | |
1481 echocheck "tdfxfb" | |
1482 if test "$_tdfxfb" = yes ; then | |
1483 _def_tdfxfb='#define HAVE_TDFXFB 1' | |
1484 _vosrc="$_vosrc vo_tdfxfb.c" | |
3161 | 1485 _vomodules="tdfxfb $_vomodules" |
2943 | 1486 else |
1487 _def_tdfxfb='#undef HAVE_TDFXFB' | |
1488 fi | |
1489 echores "$_tdfxfb" | |
1490 | |
1491 | |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1492 echocheck "DirectFB" |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1493 if test "$_directfb" = auto ; then |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1494 _directfb=no |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1495 cat > $TMPC <<EOF |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1496 #include <directfb.h> |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1497 int main(void) { IDirectFB *foo; return 0; } |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1498 EOF |
4019
079177a400cb
fbdev autodetection enabled (requires linux && /dev/fb0)
pl
parents:
4003
diff
changeset
|
1499 linux && test -c /dev/fb0 && cc_check -ldirectfb && _directfb=yes |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1500 fi |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1501 if test "$_directfb" = yes ; then |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1502 _def_directfb='#define HAVE_DIRECTFB 1' |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1503 _vosrc="$_vosrc vo_directfb.c" |
3337 | 1504 _vomodules="directfb $_vomodules" |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1505 _ld_directfb='-ldirectfb' |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1506 else |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1507 _def_directfb='#undef HAVE_DIRECTFB' |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1508 fi |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1509 echores "$_directfb" |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1510 |
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
1511 |
2943 | 1512 # Checking for localization ... |
1513 echocheck "language" | |
1514 test -z "$LINGUAS" && LINGUAS="en" | |
1515 if test -f "help_mp-${LINGUAS}.h" ; then | |
1516 echores "using ${LINGUAS}" | |
1517 else | |
1518 echores "${LINGUAS} not found, using en" | |
1519 LINGUAS="en" | |
1520 fi | |
1521 _mp_help="help_mp-${LINGUAS}.h" | |
1522 test -f help_mp-${LINGUAS}.h || die "help_mp-${LINGUAS}.h not found" | |
1523 | |
1524 | |
1525 echocheck "vsscanf()" | |
1526 cat > $TMPC << EOF | |
1527 #include <stdarg.h> | |
1528 int main(void) { vsscanf(); return 0; } | |
1529 EOF | |
1530 _vsscanf=no | |
1531 cc_check && _vsscanf=yes | |
1532 if test "$_vsscanf" = yes ; then | |
1533 _def_vsscanf='#define HAVE_VSSCANF 1' | |
1534 else | |
1535 _def_vsscanf='#undef HAVE_VSSCANF' | |
1536 fi | |
1537 echores "$_vsscanf" | |
1538 | |
1539 | |
1540 echocheck "X11 headers" | |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1541 if test -z "$_inc_x11" ; then |
2943 | 1542 for I in /usr/include /usr/X11R6/include /usr/X11/include /usr/openwin/include ; do |
1543 if test -d "$I/X11" ; then | |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1544 _inc_x11="-I$I" |
3902 | 1545 echores "yes (using $I)" |
2943 | 1546 break |
1547 fi | |
1548 done | |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1549 if test -z "$_inc_x11" ; then |
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1550 _x11=no |
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1551 echores "not found" |
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1552 fi |
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1553 else |
3902 | 1554 echores "yes (using $_inc_x11)" |
2943 | 1555 fi |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1556 if test "$_inc_x11" = "-I/usr/include" ; then |
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1557 _inc_x11="" |
2943 | 1558 fi |
1559 | |
1560 | |
1561 echocheck "X11 libs" | |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1562 if test -z "$_ld_x11" ; then |
2943 | 1563 for I in /usr/X11R6/lib /usr/X11/lib /usr/lib32 /usr/openwin/lib ; do |
1564 if test -d "$I" ; then | |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1565 _ld_x11="-L$I" |
3902 | 1566 echores "yes (using $I)" |
2943 | 1567 break; |
1568 fi | |
1569 done | |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1570 if test -z "$_ld_x11" ; then |
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1571 _x11=no |
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1572 echores "not found" |
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1573 fi |
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1574 else |
3902 | 1575 echores "yes (using $_ld_x11)" |
2943 | 1576 fi |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
1577 _ld_x11="$_ld_x11 -lX11 -lXext $_ld_sock" |
2943 | 1578 |
1579 | |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1580 ######### |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1581 # VIDEO # |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1582 ######### |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1583 |
2943 | 1584 echocheck "X11" |
2998
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1585 if test "$_x11" = auto || test "$_x11" = yes ; then |
2943 | 1586 cat > $TMPC <<EOF |
2988 | 1587 #include <X11/Xlib.h> |
1588 #include <X11/Xutil.h> | |
1589 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; } | |
2943 | 1590 EOF |
1591 _x11=no | |
2988 | 1592 cc_check $_inc_x11 $_ld_x11 && _x11=yes |
2943 | 1593 fi |
1594 if test "$_x11" = yes ; then | |
1595 _def_x11='#define HAVE_X11 1' | |
1596 _vosrc="$_vosrc vo_x11.c" | |
3161 | 1597 _vomodules="x11 $_vomodules" |
2943 | 1598 else |
1599 _def_x11='#undef HAVE_X11' | |
2998
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1600 _inc_x11='' |
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1601 _ld_x11='' |
2943 | 1602 fi |
1603 echores "$_x11" | |
1604 | |
1605 | |
2945 | 1606 echocheck "DPMS" |
2943 | 1607 _xdpms3=no |
1608 if test "$_x11" = yes ; then | |
1609 cat > $TMPC <<EOF | |
1610 #include <X11/Xmd.h> | |
1611 #include <X11/Xlib.h> | |
1612 #include <X11/Xutil.h> | |
1613 #include <X11/Xatom.h> | |
1614 #include <X11/extensions/dpms.h> | |
3010 | 1615 int main(void) { |
1616 (void) DPMSQueryExtension(0, 0, 0); | |
1617 } | |
2943 | 1618 EOF |
2988 | 1619 cc_check $_inc_x11 $_ld_x11 -lXdpms && _xdpms3=yes |
2943 | 1620 fi |
1621 _xdpms4=no | |
1622 if test "$_x11" = yes ; then | |
1623 cat > $TMPC <<EOF | |
1624 #include <X11/Xlib.h> | |
1625 #include <X11/extensions/dpms.h> | |
1626 int main(void) { | |
1627 (void) DPMSQueryExtension(0, 0, 0); | |
1628 } | |
1629 EOF | |
2945 | 1630 cc_check $_inc_x11 $_ld_x11 && _xdpms4=yes |
2943 | 1631 fi |
1632 if test "$_xdpms4" = yes ; then | |
1633 _def_xdpms='#define HAVE_XDPMS 1' | |
3248 | 1634 echores "yes (using Xdpms 4)" |
2943 | 1635 elif test "$_xdpms3" = yes ; then |
1636 _def_xdpms='#define HAVE_XDPMS 1' | |
3022
95dc79ab9f0d
_ld_x11 patch by Anders Johansson <ajh@atri.curtin.edu.au>
pl
parents:
3021
diff
changeset
|
1637 _ld_x11="$_ld_x11 -lXdpms" |
3248 | 1638 echores "yes (using Xdpms 3)" |
2943 | 1639 else |
1640 _def_xdpms='#undef HAVE_XDPMS' | |
1641 echores "no" | |
1642 fi | |
1643 | |
1644 | |
1645 echocheck "Xv" | |
3057
a78b90991320
fixes for bugs found by Ivan Kalvatchev <iive@yahoo.com>
pl
parents:
3052
diff
changeset
|
1646 if test "$_x11" = yes && test "$_xv" != no ; then |
2943 | 1647 cat > $TMPC <<EOF |
3029 | 1648 #include <X11/Xlib.h> |
1649 #include <X11/extensions/Xvlib.h> | |
1650 int main(void) { (void) XvGetPortAttribute(0, 0, 0, 0); return 0; } | |
2943 | 1651 EOF |
1652 _xv=no | |
2988 | 1653 cc_check $_inc_x11 $_ld_x11 -lXv && _xv=yes |
2943 | 1654 else |
1655 _xv=no | |
1656 fi | |
1657 if test "$_xv" = yes ; then | |
1658 _def_xv='#define HAVE_XV 1' | |
1659 _ld_xv='-lXv' | |
1660 _vosrc="$_vosrc vo_xv.c" | |
3161 | 1661 _vomodules="xv $_vomodules" |
2943 | 1662 else |
1663 _def_xv='#undef HAVE_XV' | |
1664 fi | |
1665 echores "$_xv" | |
1666 | |
1667 | |
1668 echocheck "Xinerama" | |
3057
a78b90991320
fixes for bugs found by Ivan Kalvatchev <iive@yahoo.com>
pl
parents:
3052
diff
changeset
|
1669 if test "$_x11" = yes && test "$_xinerama" != no ; then |
2943 | 1670 cat > $TMPC <<EOF |
3029 | 1671 #include <X11/Xlib.h> |
1672 #include <X11/extensions/Xinerama.h> | |
1673 int main(void) { (void) XineramaIsActive(0); return 0; } | |
2943 | 1674 EOF |
1675 _xinerama=no | |
2988 | 1676 cc_check $_inc_x11 $_ld_x11 -lXinerama && _xinerama=yes |
2943 | 1677 else |
1678 _xinerama=no | |
1679 fi | |
1680 if test "$_xinerama" = yes ; then | |
1681 _def_xinerama='#define HAVE_XINERAMA 1' | |
1682 _ld_xinerama='-lXinerama' | |
1683 else | |
1684 _def_xinerama='#undef HAVE_XINERAMA' | |
1685 fi | |
1686 echores "$_xinerama" | |
1687 | |
1688 | |
1689 # Note: the -lXxf86vm library is the VideoMode extension and though it's not | |
1690 # needed for DGA, AFAIK every distribution packages together with DGA stuffs | |
1691 # named 'X extensions' or something similar. | |
1692 # This check may be useful for future mplayer versions (to change resolution) | |
1693 # If you run into problems, remove '-lXxf86vm'. | |
1694 echocheck "Xxf86vm" | |
3057
a78b90991320
fixes for bugs found by Ivan Kalvatchev <iive@yahoo.com>
pl
parents:
3052
diff
changeset
|
1695 if test "$_x11" = yes && test "$_vm" != no ; then |
2943 | 1696 cat > $TMPC <<EOF |
3029 | 1697 #include <X11/Xlib.h> |
1698 #include <X11/extensions/xf86vmode.h> | |
1699 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; } | |
2943 | 1700 EOF |
1701 _vm=no | |
2988 | 1702 cc_check $_inc_x11 $_ld_x11 -lXxf86vm && _vm=yes |
2943 | 1703 else |
1704 _vm=no | |
1705 fi | |
1706 if test "$_vm" = yes ; then | |
1707 _def_vm='#define HAVE_XF86VM 1' | |
1708 _ld_vm='-lXxf86vm' | |
1709 else | |
1710 _def_vm='#undef HAVE_XF86VM' | |
1711 fi | |
1712 echores "$_vm" | |
1713 | |
1714 | |
1715 echocheck "DGA" | |
3206 | 1716 # Version 2 is preferred to version 1 if available |
1717 if test "$_dga" = auto ; then | |
2943 | 1718 cat > $TMPC << EOF |
1719 #include <X11/Xlib.h> | |
1720 #include <X11/extensions/xf86dga.h> | |
3206 | 1721 int main (void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; } |
2943 | 1722 EOF |
1723 _dga=no | |
3206 | 1724 cc_check $_inc_x11 $_ld_x11 -lXxf86dga -lXxf86vm && _dga=1 |
1725 | |
1726 cat > $TMPC << EOF | |
1727 #include <X11/Xlib.h> | |
1728 #include <X11/extensions/xf86dga.h> | |
1729 int main (void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; } | |
1730 EOF | |
1731 cc_check $_inc_x11 $_ld_x11 -lXxf86dga && _dga=2 | |
2943 | 1732 fi |
3206 | 1733 |
1734 _def_dga='#undef HAVE_DGA' | |
1735 _def_dga2='#undef HAVE_DGA2' | |
1736 if test "$_dga" = 1 ; then | |
2943 | 1737 _def_dga='#define HAVE_DGA 1' |
3217 | 1738 _ld_dga='-lXxf86dga' |
2943 | 1739 _vosrc="$_vosrc vo_dga.c" |
3161 | 1740 _vomodules="dga $_vomodules" |
3248 | 1741 echores "yes (using DGA 1.0)" |
3206 | 1742 elif test "$_dga" = 2 ; then |
3217 | 1743 _def_dga='#define HAVE_DGA 1' |
3206 | 1744 _def_dga2='#define HAVE_DGA2 1' |
1745 _ld_dga='-lXxf86dga' | |
1746 _vosrc="$_vosrc vo_dga.c" | |
1747 _vomodules="dga $_vomodules" | |
3248 | 1748 echores "yes (using DGA 2.0)" |
3206 | 1749 elif test "$_dga" = no ; then |
1750 echores "no" | |
2943 | 1751 else |
3206 | 1752 die "DGA version must be 1 or 2" |
2943 | 1753 fi |
1754 | |
1755 | |
1756 echocheck "OpenGL" | |
3018
9eb1cae56cae
when --enable-gl was used, linker flags (_ld_gl) were not set (found by Nick K)
pl
parents:
3015
diff
changeset
|
1757 #Note: this test is run even with --enable-gl since we autodetect $_ld_gl |
9eb1cae56cae
when --enable-gl was used, linker flags (_ld_gl) were not set (found by Nick K)
pl
parents:
3015
diff
changeset
|
1758 if test "$_x11" = yes && test "$_gl" != no ; then |
2943 | 1759 cat > $TMPC << EOF |
1760 #include <GL/gl.h> | |
1761 int main(void) { return 0; } | |
1762 EOF | |
1763 _gl=no | |
2988 | 1764 if cc_check $_inc_x11 $_ld_x11 -lGL -lm ; then |
1765 _gl=yes | |
3356
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
1766 _ld_gl="-lGL" |
2988 | 1767 elif cc_check $_inc_x11 $_ld_x11 -lGL -lm $_ld_pthread ; then |
1768 _gl=yes | |
3356
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
1769 _ld_gl="-lGL $_ld_pthread" |
2190 | 1770 fi |
2998
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1771 else |
535930d5a8ac
fix x11 linking when --disable-x11 used (btw sdl may still require it)
pl
parents:
2997
diff
changeset
|
1772 _gl=no |
2943 | 1773 fi |
1774 if test "$_gl" = yes ; then | |
1775 _def_gl='#define HAVE_GL 1' | |
1776 _vosrc="$_vosrc vo_gl.c vo_gl2.c" | |
3161 | 1777 _vomodules="opengl $_vomodules" |
2943 | 1778 else |
1779 _def_gl='#undef HAVE_GL' | |
1780 fi | |
1781 echores "$_gl" | |
1515
624c9d5dad20
Use the standard mplayer config test for finding libraries, so that it can
jkeil
parents:
1511
diff
changeset
|
1782 |
1 | 1783 |
2943 | 1784 echocheck "/dev/mga_vid" |
1785 if test "$_mga" = auto ; then | |
1786 _mga=no | |
1787 test -c /dev/mga_vid && _mga=yes | |
1788 fi | |
1789 if test "$_mga" = yes ; then | |
1790 _def_mga='#define HAVE_MGA 1' | |
1791 _vosrc="$_vosrc vo_mga.c" | |
3161 | 1792 _vomodules="mga $_vomodules" |
2464
4296c47ff209
The last irix64 patch looks broken to me, trying to fix.
jkeil
parents:
2463
diff
changeset
|
1793 else |
2943 | 1794 _def_mga='#undef HAVE_MGA' |
2463 | 1795 fi |
2943 | 1796 echores "$_mga" |
525 | 1797 |
1826
fc5efe18d15e
OggVorbis lib detection, manual language selection and some minor stuff.
atmos4
parents:
1767
diff
changeset
|
1798 |
2943 | 1799 echocheck "syncfb" |
1800 _syncfb=no | |
1801 test "$_mga" = yes && _syncfb=yes | |
1802 if test "$_syncfb" = yes ; then | |
1803 _def_syncfb='#define HAVE_SYNCFB 1' | |
1804 _vosrc="$_vosrc vo_syncfb.c" | |
1805 else | |
1806 _def_syncfb='#undef HAVE_SYNCFB' | |
1807 fi | |
1808 echores "$_syncfb" | |
1809 | |
1133
4d7e3d711f44
Added GGI autodetect, fixed --enable-debug=* for solaris n stuff.
atmosfear
parents:
1120
diff
changeset
|
1810 |
2943 | 1811 echocheck "xmga" |
1812 if test "$_xmga" = auto ; then | |
1813 _xmga=no | |
1814 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes | |
1815 fi | |
1816 if test "$_xmga" = yes ; then | |
1817 _def_xmga='#define HAVE_XMGA 1' | |
1818 _vosrc="$_vosrc vo_xmga.c" | |
3161 | 1819 _vomodules="xmga $_vomodules" |
2943 | 1820 else |
1821 _def_xmga='#undef HAVE_XMGA' | |
1822 fi | |
1823 echores "$_xmga" | |
1012
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
1824 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
1825 |
2943 | 1826 echocheck "GGI" |
1827 if test "$_ggi" = auto ; then | |
1828 cat > $TMPC << EOF | |
1829 #include <ggi/ggi.h> | |
1830 int main(void) { return 0; } | |
1831 EOF | |
1832 _ggi=no | |
3057
a78b90991320
fixes for bugs found by Ivan Kalvatchev <iive@yahoo.com>
pl
parents:
3052
diff
changeset
|
1833 cc_check -lggi && _ggi=yes |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
1834 fi |
2943 | 1835 if test "$_ggi" = yes ; then |
1836 _def_ggi='#define HAVE_GGI 1' | |
1837 _ld_ggi='-lggi' | |
1838 _vosrc="$_vosrc vo_ggi.c" | |
3161 | 1839 _vomodules="ggi $_vomodules" |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1840 else |
2943 | 1841 _def_ggi='#undef HAVE_GGI' |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1842 fi |
2943 | 1843 echores "$_ggi" |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2149
diff
changeset
|
1844 |
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2149
diff
changeset
|
1845 |
2943 | 1846 echocheck "AA" |
1847 if test "$_aa" = auto ; then | |
1848 cat > $TMPC << EOF | |
1849 #include <aalib.h> | |
3029 | 1850 int main(void) { (void) aa_init(0, 0, 0); return 0; } |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
1851 EOF |
2943 | 1852 _aa=no |
1853 cc_check -laa && _aa=yes | |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
1854 fi |
2943 | 1855 if test "$_aa" = yes ; then |
1856 _def_aa='#define HAVE_AA 1' | |
1857 _ld_aa='-laa' | |
1858 _vosrc="$_vosrc vo_aa.c" | |
3161 | 1859 _vomodules="aa $_vomodules" |
2943 | 1860 else |
1861 _def_aa='#undef HAVE_AA' | |
1862 fi | |
1863 echores "$_aa" | |
59 | 1864 |
1694 | 1865 |
2943 | 1866 echocheck "SVGAlib" |
1867 if test "$_svga" = auto ; then | |
1868 cat > $TMPC << EOF | |
1869 #include <vga.h> | |
1870 #include <vgagl.h> | |
1871 int main(void) { return 0; } | |
1694 | 1872 EOF |
2943 | 1873 _svga=no |
1874 cc_check -lvgagl -lvga && _svga=yes | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
1875 fi |
2943 | 1876 if test "$_svga" = yes ; then |
1877 _def_svga='#define HAVE_SVGALIB 1' | |
1878 _ld_svga='-lvgagl -lvga' | |
1879 _vosrc="$_vosrc vo_svga.c" | |
3161 | 1880 _vomodules="svga $_vomodules" |
2943 | 1881 else |
1882 _def_svga='#undef HAVE_SVGALIB' | |
1883 fi | |
1884 echores "$_svga" | |
1596 | 1885 |
1680
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
1886 |
2943 | 1887 echocheck "FBDev" |
1888 if test "$_fbdev" = auto ; then | |
1889 _fbdev=no | |
4019
079177a400cb
fbdev autodetection enabled (requires linux && /dev/fb0)
pl
parents:
4003
diff
changeset
|
1890 linux && test -c /dev/fb0 && _fbdev=yes |
2943 | 1891 fi |
1892 if test "$_fbdev" = yes ; then | |
1893 _def_fbdev='#define HAVE_FBDEV 1' | |
1894 _vosrc="$_vosrc vo_fbdev.c" | |
3161 | 1895 _vomodules="fbdev $_vomodules" |
4209
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1896 |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1897 if test "$_fbdev_nocopy" = yes ; then |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1898 _def_fbdev_nocopy='#define USE_CONVERT2FB 1' |
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1899 fi |
2943 | 1900 else |
1901 _def_fbdev='#undef HAVE_FBDEV' | |
4209
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1902 _def_fbdev_nocopy='#undef USE_CONVERT2FB' |
2943 | 1903 fi |
1904 echores "$_fbdev" | |
2774 | 1905 |
1906 | |
4209
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
1907 |
2943 | 1908 echocheck "DVB" |
1909 if test "$_dvb" != no ; then | |
1910 _dvb=no | |
1911 test -c /dev/ost/video && _dvb=yes | |
1912 fi | |
1913 if test "$_dvb" = yes ; then | |
1914 _def_dvb='#define HAVE_DVB 1' | |
3325 | 1915 _vomodules="mpegpes(dvb) $_vomodules" |
2943 | 1916 else |
1917 _def_dvb='#undef HAVE_DVB' | |
3325 | 1918 _vomodules="mpegpes(file) $_vomodules" |
2943 | 1919 fi |
1920 echores "$_dvb" | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
1921 |
4463
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1922 |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1923 echocheck "PNG support" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1924 if test "$_png" = auto ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1925 _png=no |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1926 if irix ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1927 # Don't check for -lpng on irix since it has its own libpng |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1928 # incompatible with the GNU libpng |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1929 echores "disabled on irix (not GNU libpng)" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1930 else |
2993 | 1931 cat > $TMPC << EOF |
1932 #include <png.h> | |
4463
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1933 #include <string.h> |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1934 int main(void) { |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1935 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING); |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1936 printf("libpng: %s\n", png_get_libpng_ver(NULL)); |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1937 return (strcmp(PNG_LIBPNG_VER_STRING, png_get_libpng_ver(NULL))); |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1938 } |
2993 | 1939 EOF |
4463
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1940 if cc_check -lpng -lz -lm ; then |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1941 if "$TMPO" >> "$TMPLOG" ; then |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1942 _png=yes |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1943 echores yes |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1944 else |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1945 echores "no (mismatch of library and header versions)" |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1946 fi |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1947 else |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1948 echores no |
2b6c3b1a9676
improved check for libpng/png.h: catch crappy build environment (png.h and
pl
parents:
4346
diff
changeset
|
1949 fi |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1950 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1951 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1952 echores "$_png" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1953 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1954 if test "$_png" = yes ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1955 _def_png='#define HAVE_PNG 1' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1956 _ld_png='-lpng -lz' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1957 _vosrc="$_vosrc vo_png.c" |
3161 | 1958 _vomodules="png $_vomodules" |
4656 | 1959 _mkf_png="yes" |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1960 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1961 _def_png='#undef HAVE_PNG' |
4656 | 1962 _mkf_png="no" |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1963 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1964 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1965 |
4560 | 1966 if test "$_vesa" != no ; then |
3189
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1967 echocheck "VESA support" |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1968 if x86 && linux ; then |
4561 | 1969 _def_vesa='#define HAVE_VESA 1' |
3189
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1970 _vosrc="$_vosrc vo_vesa.c vesa_lvo.c" |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1971 _vomodules="vesa $_vomodules" |
3248 | 1972 echores "yes" |
3189
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1973 else |
4561 | 1974 _def_vesa='#undef HAVE_VESA' |
3360 | 1975 echores "no (not supported on this OS/architecture)" |
3189
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1976 fi |
4562 | 1977 else |
4561 | 1978 _def_vesa='#undef HAVE_VESA' |
4560 | 1979 fi |
3189
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1980 |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
1981 |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1982 ################# |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1983 # VIDEO + AUDIO # |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1984 ################# |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1985 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1986 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1987 echocheck "SDL" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1988 if test -z "$_sdlconfig" ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1989 if ( sdl-config --version ) >/dev/null 2>&1 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1990 _sdlconfig="sdl-config" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1991 elif ( sdl11-config --version ) >/dev/null 2>&1 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1992 _sdlconfig="sdl11-config" |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1993 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1994 _sdlconfig=false |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1995 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1996 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
1997 if test "$_sdl" = auto || test "$_sdl" = yes ; then |
2948 | 1998 cat > $TMPC << EOF |
1999 #include <SDL.h> | |
2000 int main(void) { return 0; } | |
2001 EOF | |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2002 _sdl=no |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2003 if "$_sdlconfig" --version >/dev/null 2>&1 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2004 if cc_check `$_sdlconfig --cflags` `$_sdlconfig --libs` ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2005 _sdlversion=`$_sdlconfig --version | sed 's/[^0-9]//g'` |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2006 if test "$_sdlversion" -gt 116 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2007 if test "$_sdlversion" -lt 121 ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2008 _def_sdlbuggy='#define BUGGY_SDL' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2009 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2010 _def_sdlbuggy='#undef BUGGY_SDL' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2011 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2012 _sdl=yes |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2013 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2014 _sdl=outdated |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2015 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2016 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2017 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2018 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2019 if test "$_sdl" = yes ; then |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2020 _def_sdl='#define HAVE_SDL 1' |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2021 _ld_sdl=`$_sdlconfig --libs` |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2022 _inc_sdl=`$_sdlconfig --cflags` |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2023 _vosrc="$_vosrc vo_sdl.c" |
3189
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
2024 _vomodules="sdl $_vomodules" |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2025 _aosrc="$_aosrc ao_sdl.c" |
3161 | 2026 _aomodules="sdl $_aomodules" |
3902 | 2027 echores "yes (using $_sdlconfig)" |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2028 else |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2029 _def_sdl='#undef HAVE_SDL' |
3902 | 2030 echores "no" |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2031 fi |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2032 |
3276 | 2033 echocheck "NAS" |
2034 if test "$_nas" = auto || test "$_nas" = yes ; then | |
2035 cat > $TMPC << EOF | |
2036 #include <audio/audiolib.h> | |
2037 int main(void) { return 0; } | |
2038 EOF | |
2039 _nas=no | |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
2040 cc_check -laudio $_inc_x11 $_ld_x11 -lXt -lm && _nas=yes |
3276 | 2041 fi |
2042 if test "$_nas" = yes ; then | |
2043 _def_nas='#define HAVE_NAS 1' | |
3506
3d906972dafd
--with-x11{inc,lib}dir configure option broken, can't select a specific X11
jkeil
parents:
3451
diff
changeset
|
2044 _ld_nas="-laudio $_ld_x11 -lXt" |
3276 | 2045 _aosrc="$_aosrc ao_nas.c" |
2046 _aomodules="nas $_aomodules" | |
2047 else | |
2048 _def_nas='#undef HAVE_NAS' | |
2049 fi | |
2050 echores "$_nas" | |
3242
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2051 |
2943 | 2052 echocheck "DXR3/H+" |
2053 if test "$_dxr3" = auto ; then | |
2054 cat > $TMPC << EOF | |
3327
e4f0723d3108
Added support for the libmp1e ultrafast mpeg1 realtime encoder. This makes rte obsolete.
mswitch
parents:
3325
diff
changeset
|
2055 #include <linux/em8300.h> |
2943 | 2056 int main(void) { return 0; } |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2057 EOF |
2943 | 2058 _dxr3=no |
3327
e4f0723d3108
Added support for the libmp1e ultrafast mpeg1 realtime encoder. This makes rte obsolete.
mswitch
parents:
3325
diff
changeset
|
2059 cc_check && _dxr3=yes |
2943 | 2060 fi |
2061 if test "$_dxr3" = yes ; then | |
2062 _def_dxr3='#define HAVE_DXR3 1' | |
2063 _vosrc="$_vosrc vo_dxr3.c" | |
3208 | 2064 _vomodules="dxr3 $_vomodules" |
2943 | 2065 else |
2066 _def_dxr3='#undef HAVE_DXR3' | |
3853 | 2067 if test "$_mp1e" = auto ; then |
2068 # we don't need mp1e | |
2069 _mp1e=no | |
2070 fi | |
2943 | 2071 fi |
2072 echores "$_dxr3" | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2073 |
3853 | 2074 echocheck "libmp1e" |
2075 if test "$_mmx" = no ; then | |
2076 # mp1e REQUIRES mmx! | |
2077 _mp1e=no | |
2078 fi | |
2079 if test "$_mp1e" != no ; then | |
2080 _mp1e=yes | |
2081 _def_mp1e='#define USE_MP1E' | |
2082 _ld_mp1e="-Llibmp1e -lmp1e" | |
2083 _dep_mp1e='libmp1e/libmp1e.a' | |
2084 else | |
2085 _mp1e=no | |
2086 _def_mp1e='#undef USE_MP1E' | |
2087 _ld_mp1e="" | |
2088 _dep_mp1e='' | |
2089 fi | |
2090 echores "$_mp1e" | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
2091 |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2092 ######### |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2093 # AUDIO # |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2094 ######### |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2095 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
2096 |
2943 | 2097 echocheck "OSS Audio" |
2098 if test "$_ossaudio" = auto ; then | |
2099 cat > $TMPC << EOF | |
2100 #include <sys/soundcard.h> | |
2101 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; } | |
2482 | 2102 EOF |
2943 | 2103 _ossaudio=no |
2104 cc_check && _ossaudio=yes | |
2105 fi | |
2106 if test "$_ossaudio" = yes ; then | |
3161 | 2107 _def_ossaudio='#define USE_OSS_AUDIO 1' |
2108 _aosrc="$_aosrc ao_oss.c" | |
2109 _aomodules="oss $_aomodules" | |
4801
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
2110 if test "$_linux_devfs" = yes; then |
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
2111 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dspW"' |
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
2112 _def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"' |
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
2113 else |
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
2114 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"' |
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
2115 _def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"' |
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
2116 fi |
2943 | 2117 else |
3161 | 2118 _def_ossaudio='#undef USE_OSS_AUDIO' |
4801
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
2119 _def_ossaudio_devdsp='#define PATH_DEV_DSP ""' |
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
2120 _def_ossaudio_devmixer='#define PATH_DEV_MIXER ""' |
2943 | 2121 fi |
2122 echores "$_ossaudio" | |
2905
8927ef5c4870
Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)
jkeil
parents:
2898
diff
changeset
|
2123 |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2124 |
2943 | 2125 echocheck "ALSA audio" |
2126 if test "$_alsa" = auto || test "$_alsa" = yes; then | |
2127 _alsa=no | |
2190 | 2128 cat > $TMPC << EOF |
1004 | 2129 #include <sys/asoundlib.h> |
2943 | 2130 int main(void) { return (!(SND_LIB_MAJOR==0 && SND_LIB_MINOR==5)); } |
1004 | 2131 EOF |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2132 cc_check -lasound $_ld_dl $_ld_pthread && $TMPO && _alsaver='0.5.x' |
1004 | 2133 |
2190 | 2134 cat > $TMPC << EOF |
1004 | 2135 #include <sys/asoundlib.h> |
2943 | 2136 int main(void) { return (!(SND_LIB_MAJOR==0 && SND_LIB_MINOR==9)); } |
1004 | 2137 EOF |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2138 cc_check -lasound $_ld_dl $_ld_pthread && $TMPO && _alsaver='0.9.x' |
2943 | 2139 if test "$_alsaver" ; then |
2140 _alsa=yes | |
3902 | 2141 echores "yes (using alsa $_alsaver)" |
2943 | 2142 else |
2143 echores "no" | |
2144 fi | |
2145 else | |
2146 echores "no" | |
2190 | 2147 fi |
2943 | 2148 _def_alsa5='#undef HAVE_ALSA5' |
2149 _def_alsa9='#undef HAVE_ALSA9' | |
2150 if test "$_alsa" = yes ; then | |
2151 if test "$_alsaver" = '0.5.x' ; then | |
2152 _aosrc="$_aosrc ao_alsa5.c" | |
3161 | 2153 _aomodules="alsa5 $_aomodules" |
2943 | 2154 _def_alsa5='#define HAVE_ALSA5 1' |
2155 elif test "$_alsaver" = '0.9.x' ; then | |
2156 _aosrc="$_aosrc ao_alsa9.c" | |
3161 | 2157 _aomodules="alsa9 $_aomodules" |
2943 | 2158 _def_alsa9='#define HAVE_ALSA9 1' |
2159 fi | |
2160 _ld_alsa='-lasound' | |
2161 fi | |
1004 | 2162 |
2163 | |
2943 | 2164 echocheck "Sun audio" |
2165 if test "$_sunaudio" = auto ; then | |
2166 cat > $TMPC << EOF | |
2167 #include <sys/types.h> | |
2168 #include <sys/audioio.h> | |
3029 | 2169 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; } |
2943 | 2170 EOF |
2171 _sunaudio=no | |
2172 cc_check && _sunaudio=yes | |
2173 fi | |
2174 if test "$_sunaudio" = yes ; then | |
2175 _def_sunaudio='#define USE_SUN_AUDIO 1' | |
2176 _aosrc="$_aosrc ao_sun.c" | |
3161 | 2177 _aomodules="sun $_aomodules" |
2943 | 2178 else |
2179 _def_sunaudio='#undef USE_SUN_AUDIO' | |
2180 fi | |
2181 echores "$_sunaudio" | |
2182 | |
2183 | |
2184 echocheck "Sun mediaLib" | |
2185 if test "$_mlib" = auto ; then | |
2186 _mlib=no | |
2187 test -z "$_mlibdir" && _mlibdir=/opt/SUNWmlib | |
2188 cat > $TMPC << EOF | |
2189 #include <mlib.h> | |
2190 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; } | |
1029 | 2191 EOF |
2943 | 2192 cc_check -I${_mlibdir}/include -L${_mlibdir}/lib -lmlib && _mlib=yes |
2193 fi | |
2194 if test "$_mlib" = yes ; then | |
2195 _def_mlib='#define HAVE_MLIB 1' | |
2196 _inc_mlib=" -I${_mlibdir}/include " | |
3036
8f689566ac85
typo in _ld_mlib shell variable, mplayer didn't link any more against medialib
jkeil
parents:
3035
diff
changeset
|
2197 _ld_mlib=" -L${_mlibdir}/lib -R${_mlibdir}/lib -lmlib " |
2943 | 2198 else |
2199 _def_mlib='#undef HAVE_MLIB' | |
2200 fi | |
2201 echores "$_mlib" | |
2202 | |
2203 | |
2204 echocheck "SGI Audio" | |
2205 if test "$_sgiaudio" = auto ; then | |
2206 # check for SGI audio | |
2207 cat > $TMPC << EOF | |
2208 #include <dmedia/audio.h> | |
2209 int main(void) { return 0; } | |
2210 EOF | |
2211 _sgiaudio=no | |
2212 cc_check && _sgiaudio=yes | |
2213 fi | |
2214 if test "$_sgiaudio" = "yes" ; then | |
2215 _def_sgiaudio='#define USE_SGI_AUDIO 1' | |
2216 _ld_sgiaudio='-laudio' | |
2217 _aosrc="$_aosrc ao_sgi.c" | |
3161 | 2218 _aomodules="sgi $_aomodules" |
2943 | 2219 else |
2220 _def_sgiaudio='#undef USE_SGI_AUDIO' | |
2221 fi | |
2222 echores "$_sgiaudio" | |
1029 | 2223 |
2463 | 2224 |
3170
59d8aea76341
vcd status in summary was sometimes wrong (found by atmos)
pl
parents:
3169
diff
changeset
|
2225 echocheck "VCD support" |
59d8aea76341
vcd status in summary was sometimes wrong (found by atmos)
pl
parents:
3169
diff
changeset
|
2226 if linux || bsdos || freebsd || sunos ; then |
59d8aea76341
vcd status in summary was sometimes wrong (found by atmos)
pl
parents:
3169
diff
changeset
|
2227 _inputmodules="vcd $_inputmodules" |
3259 | 2228 _def_vcd='#define HAVE_VCD 1' |
3170
59d8aea76341
vcd status in summary was sometimes wrong (found by atmos)
pl
parents:
3169
diff
changeset
|
2229 echores "ok" |
59d8aea76341
vcd status in summary was sometimes wrong (found by atmos)
pl
parents:
3169
diff
changeset
|
2230 else |
3259 | 2231 _def_vcd='#undef HAVE_VCD' |
3170
59d8aea76341
vcd status in summary was sometimes wrong (found by atmos)
pl
parents:
3169
diff
changeset
|
2232 echores "not supported on this OS" |
59d8aea76341
vcd status in summary was sometimes wrong (found by atmos)
pl
parents:
3169
diff
changeset
|
2233 fi |
59d8aea76341
vcd status in summary was sometimes wrong (found by atmos)
pl
parents:
3169
diff
changeset
|
2234 |
59d8aea76341
vcd status in summary was sometimes wrong (found by atmos)
pl
parents:
3169
diff
changeset
|
2235 |
3975
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2236 |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2237 |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2238 echocheck "DVD support (libcss - old style)" |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2239 if test "$_css" = auto ; then |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2240 cat > $TMPC <<EOF |
3993 | 2241 #include <sys/types.h> |
3975
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2242 #include <css.h> |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2243 int main(void) { (void) CSSisEncrypted(0); return 0; } |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2244 EOF |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2245 _css=no |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2246 cc_check -lcss $_ld_dl && _css=yes |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2247 fi |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2248 if test "$_css" = yes ; then |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2249 _def_css='#define HAVE_LIBCSS 1' |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2250 test "$_csslibdir" && _ld_css="-L${_csslibdir} $_ld_css" |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2251 _inputmodules="dvdcss $_inputmodules" |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2252 _largefiles=yes |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2253 echores "yes" |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2254 else |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2255 _def_css='#undef HAVE_LIBCSS' |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2256 echores "no" |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2257 fi |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2258 |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2259 |
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2260 echocheck "DVD support (libdvdread - new style)" |
2943 | 2261 if test "$_dvdread" = auto ; then |
2262 cat > $TMPC << EOF | |
2263 #include <dvdread/dvd_reader.h> | |
2264 #include <dvdread/ifo_types.h> | |
2265 #include <dvdread/ifo_read.h> | |
2266 #include <dvdread/nav_read.h> | |
2267 int main(void) { return 0; } | |
2268 EOF | |
2269 _dvdread=no | |
3557 | 2270 if test "$_dl" = yes; then |
2271 cc_check \ | |
2272 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -ldvdread $_ld_dl && \ | |
2273 _dvdread=yes | |
2274 fi | |
2943 | 2275 fi |
2276 if test "$_dvdread" = yes ; then | |
2277 _largefiles=yes | |
2278 _def_dvdread='#define USE_DVDREAD 1' | |
2279 _ld_css='-ldvdread' | |
3169
b6bb21d686cd
completed the summary displayed after running configure
pl
parents:
3161
diff
changeset
|
2280 _inputmodules="dvdread $_inputmodules" |
3975
04b2227ab75a
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
lgb
parents:
3919
diff
changeset
|
2281 echores "yes" |
2943 | 2282 else |
2283 _def_dvdread='#undef USE_DVDREAD' | |
2961 | 2284 echores "no" |
2943 | 2285 fi |
2463 | 2286 |
2943 | 2287 echocheck "zlib" |
2450 | 2288 cat > $TMPC << EOF |
2943 | 2289 #include <zlib.h> |
2983 | 2290 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; } |
2450 | 2291 EOF |
2943 | 2292 _zlib=no |
2293 cc_check -lz && _zlib=yes | |
2294 if test "$_zlib" = yes ; then | |
2295 _def_zlib='#define HAVE_ZLIB 1' | |
2296 _ld_zlib='-lz' | |
2297 else | |
2298 _def_zlib='#undef HAVE_ZLIB' | |
2299 fi | |
2300 echores "$_zlib" | |
2463 | 2301 |
1029 | 2302 |
3015 | 2303 echocheck "RTC" |
2304 if linux ; then | |
2305 if test "$_rtc" = auto ; then | |
2306 cat > $TMPC << EOF | |
2307 #include <sys/ioctl.h> | |
2308 #include <linux/rtc.h> | |
2309 int main(void) { return RTC_IRQP_READ; } | |
2310 EOF | |
2311 _rtc=no | |
2312 cc_check && _rtc=yes | |
2313 fi | |
2314 echores "$_rtc" | |
2315 else | |
2316 _rtc=no | |
3902 | 2317 echores "no (Linux specific feature)" |
3015 | 2318 fi |
2319 if test "$_rtc" = yes ; then | |
2320 _def_rtc='#define HAVE_RTC 1' | |
2321 else | |
2322 _def_rtc='#undef HAVE_RTC' | |
2323 fi | |
2324 | |
3018
9eb1cae56cae
when --enable-gl was used, linker flags (_ld_gl) were not set (found by Nick K)
pl
parents:
3015
diff
changeset
|
2325 |
2943 | 2326 echocheck "mad support" |
2327 if test "$_mad" = auto ; then | |
2328 _mad=no | |
2329 cat > $TMPC << EOF | |
2435 | 2330 #include <mad.h> |
2331 int main(void) { return 0; } | |
2332 EOF | |
2988 | 2333 cc_check $_madlibdir -lmad && _mad=yes |
2943 | 2334 fi |
2335 if test "$_mad" = yes ; then | |
2336 _def_mad='#define USE_LIBMAD 1' | |
2337 _ld_mad='-lmad' | |
2338 else | |
2339 _def_mad='#undef USE_LIBMAD' | |
2340 fi | |
2341 echores "$_mad" | |
2342 | |
2343 | |
2344 echocheck "OggVorbis support" | |
2345 if test "$_vorbis" = auto ; then | |
2346 _vorbis=no | |
2347 cat > $TMPC << EOF | |
2348 #include <vorbis/codec.h> | |
2349 int main(void) { return 0; } | |
2350 EOF | |
2988 | 2351 cc_check -lvorbis -logg -lm && _vorbis=yes |
2943 | 2352 fi |
2353 if test "$_vorbis" = yes ; then | |
2354 _def_vorbis='#define HAVE_OGGVORBIS 1' | |
3356
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
2355 _ld_vorbis='-lvorbis -logg' |
2943 | 2356 else |
2357 _def_vorbis='#undef HAVE_OGGVORBIS' | |
2358 fi | |
2359 echores "$_vorbis" | |
2360 | |
2361 | |
2362 echocheck "Win32 DLL support" | |
3869 | 2363 qnx && _win32=no |
3865
a0c8079d2711
fixed syntax error bug reported by Steven M. Schultz. btw, pl, please fix this
alex
parents:
3853
diff
changeset
|
2364 if test "$_win32" = auto ; then |
2943 | 2365 _win32=no |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
2366 if x86 ; then |
2943 | 2367 if test -z "$_win32libdir" ; then |
2368 for I in /usr/local/lib/win32 /usr/lib/win32 ; do | |
2369 if test -d "$I" ; then | |
2370 _win32libdir="$I" | |
2371 break; | |
2372 fi; | |
2373 done | |
2374 fi | |
2375 test "$_win32libdir" && _win32=yes | |
2376 fi | |
2377 fi | |
2378 if test "$_win32" = yes ; then | |
2379 _def_win32='#define USE_WIN32DLL 1' | |
2380 _ld_win32='-Lloader -lloader' | |
2381 _dep_win32='loader/libloader.a' | |
3169
b6bb21d686cd
completed the summary displayed after running configure
pl
parents:
3161
diff
changeset
|
2382 _codecmodules="win32 $_codecmodules" |
3902 | 2383 echores "yes (using $_win32libdir)" |
2943 | 2384 else |
2385 _def_win32='#undef USE_WIN32DLL' | |
3451 | 2386 _dshow=no |
3902 | 2387 echores "no" |
2943 | 2388 fi |
2389 | |
3902 | 2390 |
2943 | 2391 echocheck "DirectShow" |
3451 | 2392 if false ; then |
2393 | |
2394 if test "$_dshow" != no ; then | |
2943 | 2395 _dshow=no |
2396 # check if compiler supports C++ and C++-libs are installed correctly | |
2397 cat > "$TMPCPP" << EOF | |
2398 #include <string> | |
2399 class myclass { | |
2400 private: int ret; | |
2401 public: int myreturn(void); | |
2402 }; | |
2403 int myclass::myreturn(void) { ret = 0; return ret ; } | |
2404 int main(void) { myclass myobject; return myobject.myreturn(); } | |
2405 EOF | |
2406 echo "------------------------------------------------" >> "$TMPLOG" | |
2407 cat "$TMPCPP" >> "$TMPLOG" | |
2408 if ( "$_cc" "$TMPCPP" -o "$TMPO" && "$TMPO" ) >> "$TMPLOG" 2>&1 ; then | |
2409 _dshow=yes | |
2410 echores "yes (C++ is ok)" | |
2411 else | |
2412 echores "no" | |
2413 cat << EOF | |
2414 | |
2415 Your C++ runtime environment is broken. | |
2416 | |
2417 Hints: Does $_cc support C++ ? Have you a C++ compiler installed ? | |
2418 Are the C++ libraries correctly installed ? | |
2419 Check for libstdc++ and in (/etc/)ld.so.conf | |
2420 | |
3161 | 2421 If you do not need DirectShow support, you can also use: |
2943 | 2422 ./configure --disable-dshow <your-normal-configure-options> |
2423 to disable building of the C++ based DirectShow code. | |
2424 | |
2425 EOF | |
2426 die "$_cc's C++ is broken" | |
2427 fi | |
3451 | 2428 fi |
2429 | |
2943 | 2430 fi |
3451 | 2431 |
2432 echores "$_dshow" | |
2433 | |
2943 | 2434 if test "$_dshow" = yes ; then |
2435 _def_dshow='#define USE_DIRECTSHOW 1' | |
3451 | 2436 _ld_dshow='-Lloader/dshow -lDS_Filter' |
2437 _dep_dshow='loader/dshow/libDS_Filter.a' | |
3169
b6bb21d686cd
completed the summary displayed after running configure
pl
parents:
3161
diff
changeset
|
2438 _codecmodules="directshow $_codecmodules" |
2943 | 2439 else |
2440 _def_dshow='#undef USE_DIRECTSHOW' | |
2441 fi | |
2435 | 2442 |
2443 | |
2943 | 2444 echocheck "XAnim DLL" |
2445 if test "$_xanim" = auto ; then | |
2446 _xanim=no | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2447 if test "$_dl" = yes ; then |
3241
71075e783b04
fixed xanim detection (also present on non-x86 too - look at xanim homepage) and added tv into _inputmodules
alex
parents:
3237
diff
changeset
|
2448 if test -z "$_xanimlibdir" ; then |
71075e783b04
fixed xanim detection (also present on non-x86 too - look at xanim homepage) and added tv into _inputmodules
alex
parents:
3237
diff
changeset
|
2449 for I in /usr/local/lib/xanim/mods /usr/lib/xanim/mods /usr/lib/xanim ; do |
2943 | 2450 if test -d "$I" ; then |
2451 _xanimlibdir="$I" | |
2452 break; | |
2453 fi; | |
2454 done | |
2455 fi | |
3241
71075e783b04
fixed xanim detection (also present on non-x86 too - look at xanim homepage) and added tv into _inputmodules
alex
parents:
3237
diff
changeset
|
2456 test "$_xanimlibdir" && _xanim=yes |
3359 | 2457 if test "$_xanim" = yes ; then |
3902 | 2458 echores "yes (using $_xanimlibdir)" |
3337 | 2459 else |
3902 | 2460 echores "no (no suitable directory found - see DOCS/codecs.html)" |
3337 | 2461 fi |
2943 | 2462 else |
3902 | 2463 echores "no (dynamic loader support needed)" |
2943 | 2464 fi |
2465 else | |
2466 echores "$_xanim" | |
2467 fi | |
2468 if test "$_xanim" = yes ; then | |
2469 _def_xanim='#define USE_XANIM 1' | |
2470 _def_xanim_path="#define XACODEC_PATH \"$_xanimlibdir\"" | |
3169
b6bb21d686cd
completed the summary displayed after running configure
pl
parents:
3161
diff
changeset
|
2471 _codecmodules="xanim $_codecmodules" |
2943 | 2472 else |
2473 _def_xanim='#undef USE_XANIM' | |
2474 _def_xanim_path='#undef XACODEC_PATH' | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
2475 fi |
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1388
diff
changeset
|
2476 |
2943 | 2477 |
2478 echocheck "iconv" | |
2479 if test "$_iconv" = auto ; then | |
2480 if freebsd ; then | |
2481 _iconv_tmp='#include <giconv.h>' | |
2482 else | |
2483 _iconv_tmp='#include <iconv.h>' | |
2484 fi | |
2485 cat > $TMPC << EOF | |
2486 #include <stdio.h> | |
2487 #include <unistd.h> | |
2488 $_iconv_tmp | |
2489 #define INBUFSIZE 1024 | |
2490 #define OUTBUFSIZE 4096 | |
2491 | |
2492 char inbuffer[INBUFSIZE]; | |
2493 char outbuffer[OUTBUFSIZE]; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1034
diff
changeset
|
2494 |
2943 | 2495 int main(void) { |
2496 ssize_t numread; | |
2497 iconv_t icdsc; | |
2498 char *tocode="UTF-8"; | |
2499 char *fromcode="cp1250"; | |
2500 if ((icdsc = iconv_open (tocode, fromcode)) != (iconv_t)(-1)) { | |
2501 while ((numread = read (0, inbuffer, INBUFSIZE))) { | |
2502 char *iptr=inbuffer; | |
2503 char *optr=outbuffer; | |
2504 size_t inleft=numread; | |
2505 size_t outleft=OUTBUFSIZE; | |
2506 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft) | |
2507 != (size_t)(-1)) { | |
2508 write (1, outbuffer, OUTBUFSIZE - outleft); | |
2509 } | |
2510 } | |
2511 if (iconv_close(icdsc) == -1) | |
2512 ; | |
2513 } | |
2514 } | |
987 | 2515 EOF |
2943 | 2516 _iconv=no |
2517 if freebsd ; then | |
2518 cc_check -lm -lgiconv && _iconv=yes | |
2519 elif bsdos ; then | |
2520 cc_check -lm -liconv && _iconv=yes | |
2521 else | |
2522 cc_check -lm && _iconv=yes | |
2523 fi | |
987 | 2524 fi |
2943 | 2525 if test "$_iconv" = yes ; then |
2526 _def_iconv='#define USE_ICONV 1' | |
2527 freebsd && _ld_iconv='-lgiconv' | |
2528 bsdos && _ld_iconv='-liconv' | |
2529 else | |
2530 _def_iconv='#undef USE_ICONV' | |
2531 fi | |
2532 echores "$_iconv" | |
2533 | |
1012
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
2534 |
3873 | 2535 echocheck "FFmpeg libavcodec (static)" |
3881 | 2536 if test "$_libavcodec" = auto ; then |
3065 | 2537 # Note: static linking is preferred to dynamic linking |
2943 | 2538 _libavcodec=no |
3888 | 2539 if test -d libavcodec && test -f libavcodec/utils.c ; then |
2540 if grep avcodec_find_encoder_by_name libavcodec/utils.c > /dev/null 2>&1 ; then | |
3873 | 2541 _libavcodec=yes |
2542 echores "yes" | |
2543 else | |
3902 | 2544 echores "no (old ffmpeg version, use CVS !)" |
3873 | 2545 fi |
2546 else | |
3902 | 2547 echores "no (see DOCS/codecs.html)" |
3873 | 2548 fi |
2549 else | |
3881 | 2550 echores "$_libavcodec" |
2943 | 2551 fi |
3881 | 2552 |
3893
38ddef4a863b
divx4encore detection fixed (D Richard Felker III) + ffmpeg.so detection disabled if static=yes
arpi
parents:
3888
diff
changeset
|
2553 if test "$_libavcodec" != yes ; then |
3873 | 2554 echocheck "FFmpeg libavcodec (dynamic)" |
3893
38ddef4a863b
divx4encore detection fixed (D Richard Felker III) + ffmpeg.so detection disabled if static=yes
arpi
parents:
3888
diff
changeset
|
2555 if test "$_libavcodecso" = auto ; then |
2945 | 2556 _libavcodecso=no |
3893
38ddef4a863b
divx4encore detection fixed (D Richard Felker III) + ffmpeg.so detection disabled if static=yes
arpi
parents:
3888
diff
changeset
|
2557 # FIXME : check for avcodec_find_encoder_by_name() for mencoder |
2943 | 2558 cat > $TMPC << EOF |
3873 | 2559 #define FF_POSTPROCESS 1 |
2943 | 2560 #include <libffmpeg/avcodec.h> |
3873 | 2561 int quant_store[MBR+1][MBC+1]; |
2943 | 2562 int main(void) { return 0; } |
987 | 2563 EOF |
3873 | 2564 if cc_check -lffmpeg -lm ; then |
2565 _libavcodecso=yes | |
3902 | 2566 echores "yes (using libffmpeg.so)" |
3873 | 2567 else |
3902 | 2568 echores "no (libffmpeg.so is broken/obsolete)" |
3873 | 2569 fi |
2570 else | |
3893
38ddef4a863b
divx4encore detection fixed (D Richard Felker III) + ffmpeg.so detection disabled if static=yes
arpi
parents:
3888
diff
changeset
|
2571 echores "$_libavcodecso" |
2943 | 2572 fi |
3893
38ddef4a863b
divx4encore detection fixed (D Richard Felker III) + ffmpeg.so detection disabled if static=yes
arpi
parents:
3888
diff
changeset
|
2573 fi |
38ddef4a863b
divx4encore detection fixed (D Richard Felker III) + ffmpeg.so detection disabled if static=yes
arpi
parents:
3888
diff
changeset
|
2574 |
2943 | 2575 _def_libavcodec='#undef USE_LIBAVCODEC' |
2945 | 2576 _def_libavcodecso='#undef USE_LIBAVCODEC_SO' |
2943 | 2577 _def_ffpostprocess='#undef FF_POSTPROCESS' |
2578 if test "$_libavcodec" = yes ; then | |
2579 _def_libavcodec='#define USE_LIBAVCODEC 1' | |
2580 _ld_libavcodec='-Llibavcodec -lavcodec' | |
2581 _dep_libavcodec='libavcodec/libavcodec.a' | |
2582 _def_ffpostprocess='#define FF_POSTPROCESS 1' | |
3169
b6bb21d686cd
completed the summary displayed after running configure
pl
parents:
3161
diff
changeset
|
2583 _codecmodules="libavcodec $_codecmodules" |
2945 | 2584 elif test "$_libavcodecso" = yes ; then |
2585 _def_libavcodecso='#define USE_LIBAVCODEC_SO 1' | |
2943 | 2586 _ld_libavcodec='-lffmpeg' |
2587 _def_ffpostprocess='#define FF_POSTPROCESS 1' | |
3169
b6bb21d686cd
completed the summary displayed after running configure
pl
parents:
3161
diff
changeset
|
2588 _codecmodules="libavcodec.so $_codecmodules" |
987 | 2589 fi |
1012
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
2590 |
4678 | 2591 |
4346
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2592 echocheck "zr" |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2593 if test "$_zr" = yes ; then |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2594 if test "$_libavcodec" = yes ; then |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2595 _def_zr='#define HAVE_ZR 1' |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2596 _vosrc="$_vosrc vo_zr.c jpeg_enc.c" |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2597 _vomodules="zr $_vomodules" |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2598 echores "$_zr" |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2599 else |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2600 echores "libavcodec (static) is required by zr, sorry" |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2601 _def_zr='#undef HAVE_ZR' |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2602 fi |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2603 else |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2604 _def_zr='#undef HAVE_ZR' |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2605 echores "$_zr" |
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
2606 fi |
1012
f736cf67a5ab
various changes, second filds test disabled, alsa tests fixed
arpi_esp
parents:
1011
diff
changeset
|
2607 |
4678 | 2608 |
2609 echocheck "XviD/DivX4linux/OpenDivX decore" | |
2610 cat > $TMPC << EOF | |
2943 | 2611 #include <decore.h> |
3029 | 2612 int main(void) { (void) decore(0, 0, 0, 0); return DEC_OPT_FRAME_311; } |
987 | 2613 EOF |
4678 | 2614 if test "$_xvidcore" && cc_check -lm "$_xvidcore" ; then |
2615 _xvid=yes | |
2616 _divx4linux=no | |
2617 _opendivx=no | |
2618 _ld_decore="$_xvidcore" | |
2943 | 2619 _def_decore='#define NEW_DECORE 1' |
4678 | 2620 _def_divx='#define USE_DIVX' |
2621 _def_odivx_postprocess='#undef HAVE_ODIVX_POSTPROCESS' | |
2622 _codecmodules="xvid $_codecmodules" | |
2623 echores "XviD (with $_xvidcore)" | |
2624 elif test "$_xvid" != no && cc_check -lm -lxvidcore ; then | |
2625 _xvid=yes | |
2626 _divx4linux=no | |
2627 _opendivx=no | |
2628 _ld_decore='-lxvidcore' | |
2629 _def_decore='#define NEW_DECORE 1' | |
2630 _def_divx='#define USE_DIVX' | |
2631 _def_odivx_postprocess='#undef HAVE_ODIVX_POSTPROCESS' | |
2632 _codecmodules="xvid $_codecmodules" | |
2633 echores "XviD (with libxvidcore.so)" | |
2634 elif test "$_divx4linux" != no && cc_check -lm -ldivxdecore -lm ; then | |
2635 _xvid=no | |
2636 _divx4linux=yes | |
2637 _opendivx=no | |
2943 | 2638 _ld_decore='-ldivxdecore opendivx/postprocess.o' |
4678 | 2639 _def_decore='#define NEW_DECORE 1' |
4489 | 2640 _def_divx='#define USE_DIVX' |
2641 _def_odivx_postprocess='#define HAVE_ODIVX_POSTPROCESS 1' | |
3169
b6bb21d686cd
completed the summary displayed after running configure
pl
parents:
3161
diff
changeset
|
2642 _codecmodules="divx4linux $_codecmodules" |
4678 | 2643 echores "Divx4linux (with libdivxdecore.so)" |
2644 elif test "$_opendivx" != no ; then | |
2645 _xvid=no | |
2646 _divx4linux=no | |
2647 _opendivx=yes | |
2648 _ld_decore='-Lopendivx -ldecore' | |
2649 _def_decore='#undef NEW_DECORE' | |
2650 _def_divx='#define USE_DIVX' | |
2651 _def_odivx_postprocess='#define HAVE_ODIVX_POSTPROCESS 1' | |
2652 _codecmodules="opendivx $_codecmodules" | |
2653 echores "OpenDivX" | |
3868
8a4ef002bb89
opendivx listed at codecs, libvo2/config.mak is optional
arpi
parents:
3865
diff
changeset
|
2654 else |
4678 | 2655 _xvid=no |
2656 _divx4linux=no | |
2657 _opendivx=no | |
2658 _ld_decore='' | |
2659 _def_decore='#undef NEW_DECORE' | |
2660 _def_divx='#undef USE_DIVX' | |
2661 _def_odivx_postprocess='#undef HAVE_ODIVX_POSTPROCESS' | |
2662 echores "no" | |
3079 | 2663 fi |
2664 | |
4678 | 2665 |
3893
38ddef4a863b
divx4encore detection fixed (D Richard Felker III) + ffmpeg.so detection disabled if static=yes
arpi
parents:
3888
diff
changeset
|
2666 # mencoder requires (optional) those libs: libmp3lame and divx4linux encore |
3430
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
2667 if test "$_mencoder" != no ; then |
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
2668 |
3901 | 2669 echocheck "libmp3lame (for mencoder)" |
3430
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
2670 _mp3lame=no |
3356
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
2671 cat > $TMPC <<EOF |
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
2672 #include <lame/lame.h> |
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
2673 int main(void) { (void) lame_init(); return 0; } |
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
2674 EOF |
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
2675 # Note: libmp3lame usually depends on vorbis |
3430
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
2676 cc_check -lmp3lame $_ld_vorbis -lm && _mp3lame=yes |
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
2677 if test "$_mp3lame" = yes ; then |
3356
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
2678 _def_mp3lame='#define HAVE_MP3LAME 1' |
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
2679 _ld_mp3lame="-lmp3lame $_ld_vorbis" |
3430
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
2680 else |
3356
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
2681 _def_mp3lame='#undef HAVE_MP3LAME' |
3430
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
2682 fi |
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
2683 echores "$_mp3lame" |
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
2684 |
4678 | 2685 |
2686 echocheck "XviD/DivX4linux encore (for mencoder)" | |
2687 cat > $TMPC << EOF | |
3079 | 2688 #include <encore2.h> |
3356
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
2689 int main(void) { (void) encore(0, 0, 0, 0); return 0; } |
3079 | 2690 EOF |
4678 | 2691 if test "$_xvid" != no && test "$_xvidcore" && cc_check -lm "$_xvidcore" ; then |
2692 _def_encore='#define HAVE_DIVX4ENCORE 1' | |
4686
b49325176f0d
fixed broken xvid support ("lm" rather than "-lm" in libs)
rfelker
parents:
4678
diff
changeset
|
2693 _ld_encore="-lm $_xvidcore" |
4678 | 2694 echores "XviD (with $_xvidcore)" |
2695 elif test "$_xvid" != no && cc_check -lm -lxvidcore ; then | |
3893
38ddef4a863b
divx4encore detection fixed (D Richard Felker III) + ffmpeg.so detection disabled if static=yes
arpi
parents:
3888
diff
changeset
|
2696 _def_encore='#define HAVE_DIVX4ENCORE 1' |
4686
b49325176f0d
fixed broken xvid support ("lm" rather than "-lm" in libs)
rfelker
parents:
4678
diff
changeset
|
2697 _ld_encore='-lm -lxvidcore' |
4678 | 2698 echores "XviD (with libxvidcore.so)" |
2699 elif test "$_divx4linux" != no && cc_check -lm -ldivxencore ; then | |
2700 _def_encore='#define HAVE_DIVX4ENCORE 1' | |
2701 _ld_encore='-lm -ldivxencore' | |
2702 echores "DivX4linux (with libdivxencore.so)" | |
3430
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
2703 else |
3893
38ddef4a863b
divx4encore detection fixed (D Richard Felker III) + ffmpeg.so detection disabled if static=yes
arpi
parents:
3888
diff
changeset
|
2704 _def_encore='#undef HAVE_DIVX4ENCORE' |
4678 | 2705 echores "no" |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
2706 fi |
987 | 2707 fi |
3430
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
2708 |
4176
116abdd0aed1
small gtk bug fix (-display bug, baze gabu, miattad fogok elkarhozni:), and remove gui dependencie in mencoder
pontscho
parents:
4172
diff
changeset
|
2709 echocheck "mencoder" |
116abdd0aed1
small gtk bug fix (-display bug, baze gabu, miattad fogok elkarhozni:), and remove gui dependencie in mencoder
pontscho
parents:
4172
diff
changeset
|
2710 _mencoder_flag='#undef HAVE_MENCODER' |
116abdd0aed1
small gtk bug fix (-display bug, baze gabu, miattad fogok elkarhozni:), and remove gui dependencie in mencoder
pontscho
parents:
4172
diff
changeset
|
2711 if test "$_mencoder" = yes ; then |
116abdd0aed1
small gtk bug fix (-display bug, baze gabu, miattad fogok elkarhozni:), and remove gui dependencie in mencoder
pontscho
parents:
4172
diff
changeset
|
2712 _mencoder_flag='#define HAVE_MENCODER' |
116abdd0aed1
small gtk bug fix (-display bug, baze gabu, miattad fogok elkarhozni:), and remove gui dependencie in mencoder
pontscho
parents:
4172
diff
changeset
|
2713 fi |
116abdd0aed1
small gtk bug fix (-display bug, baze gabu, miattad fogok elkarhozni:), and remove gui dependencie in mencoder
pontscho
parents:
4172
diff
changeset
|
2714 echores "$_mencoder" |
987 | 2715 |
2943 | 2716 echocheck "fastmemcpy" |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2717 # fastmemcpy check is done earlier with tests of CPU & binutils features |
2943 | 2718 if test "$_fastmemcpy" = yes ; then |
2719 _def_fastmemcpy='#define USE_FASTMEMCPY 1' | |
2720 else | |
2721 _def_fastmemcpy='#undef USE_FASTMEMCPY' | |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1136
diff
changeset
|
2722 fi |
2943 | 2723 echores "$_fastmemcpy" |
987 | 2724 |
2943 | 2725 |
2726 echocheck "TV interface" | |
2727 if test "$_tv" = yes ; then | |
2728 _def_tv='#define USE_TV 1' | |
3241
71075e783b04
fixed xanim detection (also present on non-x86 too - look at xanim homepage) and added tv into _inputmodules
alex
parents:
3237
diff
changeset
|
2729 _inputmodules="tv $_inputmodules" |
2943 | 2730 else |
2731 _def_tv='#undef USE_TV' | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
2732 fi |
2943 | 2733 echores "$_tv" |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
2734 |
3242
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2735 echocheck "Video 4 Linux TV interface" |
3750 | 2736 if test "$_tv_v4l" = auto ; then |
2737 _tv_v4l=no | |
2738 if test "$_tv" = yes && linux ; then | |
2739 if test -c /dev/video0 || test -c /dev/video ; then | |
3242
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2740 cat > $TMPC <<EOF |
3838 | 2741 #include <stdlib.h> |
3242
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2742 #include <linux/videodev.h> |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2743 int main(void) { return 0; } |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2744 EOF |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2745 cc_check && _tv_v4l=yes |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2746 fi |
3750 | 2747 fi |
3242
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2748 fi |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2749 if test "$_tv_v4l" = yes ; then |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2750 _def_tv_v4l='#define HAVE_TV_V4L 1' |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2751 _inputmodules="tv-v4l $_inputmodules" |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2752 else |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2753 _def_tv_v4l='#undef HAVE_TV_V4L' |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2754 fi |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2755 echores "$_tv_v4l" |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
2756 |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
2757 |
3206 | 2758 echocheck "select" |
2759 if test "$_select" = no ; then | |
2760 _def_select='#undef HAVE_AUDIO_SELECT' | |
2761 elif test "$_select" = yes ; then | |
2762 _def_select='#define HAVE_AUDIO_SELECT 1' | |
2763 fi | |
2764 echores "$_select" | |
2765 | |
2766 | |
2943 | 2767 echocheck "streaming" |
2768 # FIXME streaming check | |
3689 | 2769 if test "$_streaming" != no ; then |
2943 | 2770 _def_streaming='#define STREAMING 1' |
3919 | 2771 _ld_streaming="$_ld_sock" |
3169
b6bb21d686cd
completed the summary displayed after running configure
pl
parents:
3161
diff
changeset
|
2772 _inputmodules="network $_inputmodules" |
2896
3a44575edc30
Added --enable-libvo2, NOTE: it doesn't compile with libvo2 yet!
mswitch
parents:
2894
diff
changeset
|
2773 else |
2943 | 2774 _def_streaming='#undef STREAMING' |
2896
3a44575edc30
Added --enable-libvo2, NOTE: it doesn't compile with libvo2 yet!
mswitch
parents:
2894
diff
changeset
|
2775 fi |
2943 | 2776 echores "$_streaming" |
2777 | |
2778 | |
2779 | |
2780 # --------------- GUI specific tests begin ------------------- | |
2781 echocheck "GUI" | |
2782 echo "$_gui" | |
2783 if test "$_gui" = yes ; then | |
1740 | 2784 |
3196
ca4aaadbfb0a
extrachecks for weird configs GUI (--enable-gui --disable-png for instance)
pl
parents:
3193
diff
changeset
|
2785 # Required libraries |
ca4aaadbfb0a
extrachecks for weird configs GUI (--enable-gui --disable-png for instance)
pl
parents:
3193
diff
changeset
|
2786 test "$_png" != yes && die "PNG support required for GUI compilation" |
ca4aaadbfb0a
extrachecks for weird configs GUI (--enable-gui --disable-png for instance)
pl
parents:
3193
diff
changeset
|
2787 test "$_x11" != yes && die "X11 support required for GUI compilation" |
ca4aaadbfb0a
extrachecks for weird configs GUI (--enable-gui --disable-png for instance)
pl
parents:
3193
diff
changeset
|
2788 |
2943 | 2789 echocheck "XShape extension" |
2790 _xshape=no | |
2791 if test "$_x11" = yes ; then | |
2792 cat > $TMPC << EOF | |
2793 #include <X11/Xlib.h> | |
2794 #include <X11/Xproto.h> | |
2795 #include <X11/Xutil.h> | |
2796 #include <X11/extensions/shape.h> | |
2797 #include <stdlib.h> | |
1740 | 2798 int main(void) { |
2943 | 2799 char *name = ":0.0"; |
2800 Display *wsDisplay; | |
2801 int exitvar = 0; | |
2802 int eventbase, errorbase; | |
2803 if (getenv("DISPLAY")) | |
2804 name=getenv("DISPLAY"); | |
2805 wsDisplay=XOpenDisplay(name); | |
2806 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase)) | |
2807 exitvar=1; | |
2808 XCloseDisplay(wsDisplay); | |
2809 return exitvar; | |
1740 | 2810 } |
2811 EOF | |
2988 | 2812 cc_check $_inc_x11 $_ld_x11 && _xshape=yes |
1740 | 2813 fi |
2943 | 2814 if test "$_xshape" = yes ; then |
2815 _def_xshape='#define HAVE_XSHAPE 1' | |
2700 | 2816 else |
2943 | 2817 die "the GUI requires the X11 extension XShape (which was not found)" |
2700 | 2818 fi |
2943 | 2819 echores "$_xshape" |
2594 | 2820 |
2821 | |
2943 | 2822 # Check for GTK: |
2823 echocheck "gtk version" | |
2824 if test -z "$_gtkconfig" ; then | |
2825 if ( gtk-config --version ) >/dev/null 2>&1 ; then | |
2826 _gtkconfig="gtk-config" | |
2827 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then | |
2828 _gtkconfig="gtk12-config" | |
2829 else | |
2830 die "the GUI requires GTK (which was not found)" | |
2831 fi | |
2700 | 2832 fi |
2943 | 2833 _gtk=`$_gtkconfig --version 2>&1` |
2834 _inc_gtk=`$_gtkconfig --cflags 2>&1` | |
2835 _ld_gtk=`$_gtkconfig --libs 2>&1` | |
3902 | 2836 echores "$_gtk (using $_gtkconfig)" |
1694 | 2837 |
2943 | 2838 # Check for GLIB |
2839 echocheck "glib version" | |
2840 if test -z "$_glibconfig" ; then | |
2841 if ( glib-config --version ) >/dev/null 2>&1 ; then | |
2842 _glibconfig="glib-config" | |
2843 elif ( glib12-config --version ) >/dev/null 2>&1 ; then | |
2844 _glibconfig="glib12-config" | |
2845 else | |
2846 die "the GUI requires GLIB (which was not found)" | |
2847 fi | |
2848 fi | |
2849 _glib=`$_glibconfig --version 2>&1` | |
2850 _inc_glib=`$_glibconfig --cflags 2>&1` | |
2851 _ld_glib=`$_glibconfig --libs 2>&1` | |
3902 | 2852 echores "$_glib (using $_glibconfig)" |
1694 | 2853 |
2943 | 2854 _def_gui='#define HAVE_NEW_GUI 1' |
3422 | 2855 _ld_gui='$(GTKLIB) $(GLIBLIB)' |
2943 | 2856 |
2983 | 2857 echo |
2858 echo "Creating Gui/config.mak" | |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2859 cat > Gui/config.mak << EOF |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2860 # -------- Generated by configure ----------- |
2943 | 2861 |
2862 GTKINC = $_inc_gtk | |
2863 GTKLIBS = $_ld_gtk | |
2864 GLIBINC = $_inc_glib | |
2865 GLIBLIBS = $_ld_glib | |
1694 | 2866 |
2867 EOF | |
2868 | |
2943 | 2869 else |
2870 _def_gui='#undef HAVE_NEW_GUI' | |
1 | 2871 fi |
2943 | 2872 # --------------- GUI specific tests end ------------------- |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
2873 |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1515
diff
changeset
|
2874 |
1279 | 2875 |
2943 | 2876 ############################################################################# |
2905
8927ef5c4870
Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)
jkeil
parents:
2898
diff
changeset
|
2877 |
697 | 2878 # Checking for CFLAGS |
2171 | 2879 if test "$_profile" || test "$_debug" ; then |
2943 | 2880 CFLAGS="-W -Wall -O2 $_march $_mcpu $_debug $_profile" |
2881 elif test -z "$CFLAGS" ; then | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
2882 if test "$host_arch" != "mips" ; then |
2943 | 2883 CFLAGS="-O4 $_march $_mcpu -pipe -ffast-math -fomit-frame-pointer" |
2884 else | |
2885 CFLAGS="-O4 $_march $_mcpu -ffast-math -fomit-frame-pointer" | |
2886 fi | |
2239
9525c7d29543
Added notice about CFLAGS and added -fomit-frame-pointer to be always used.
atmos4
parents:
2228
diff
changeset
|
2887 else |
2943 | 2888 cat <<EOF |
2889 | |
2890 MPlayer compilation will use CFLAGS set by you, but: | |
2891 DO NOT BUGREPORT IF IT DOES NOT WORK | |
2892 | |
2893 It is strongly recommended you let MPlayer choose the correct CFLAGS! | |
2894 To do so, execute 'CFLAGS= ./configure <options>' | |
2895 | |
2239
9525c7d29543
Added notice about CFLAGS and added -fomit-frame-pointer to be always used.
atmos4
parents:
2228
diff
changeset
|
2896 EOF |
697 | 2897 fi |
2190 | 2898 |
2943 | 2899 # Thread support |
2190 | 2900 if linux ; then |
2901 CFLAGS="$CFLAGS -D_REENTRANT" | |
2902 elif bsd ; then | |
2943 | 2903 # FIXME bsd needs this so maybe other OS'es |
2190 | 2904 CFLAGS="$CFLAGS -D_THREAD_SAFE" |
1182 | 2905 fi |
2906 | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1427
diff
changeset
|
2907 # 64 bit file offsets? |
3327
e4f0723d3108
Added support for the libmp1e ultrafast mpeg1 realtime encoder. This makes rte obsolete.
mswitch
parents:
3325
diff
changeset
|
2908 if test "$_largefiles" = yes || freebsd ; then |
2190 | 2909 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" |
3327
e4f0723d3108
Added support for the libmp1e ultrafast mpeg1 realtime encoder. This makes rte obsolete.
mswitch
parents:
3325
diff
changeset
|
2910 if test "$_dvdread" = yes ; then |
2190 | 2911 # dvdread support requires this (for off64_t) |
2912 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE" | |
1596 | 2913 fi |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1427
diff
changeset
|
2914 fi |
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1427
diff
changeset
|
2915 |
2943 | 2916 # Determine OS dependent libs |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2917 if cygwin ; then |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2918 _confcygwin='TARGET_CYGWIN = yes' |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2919 _def_confwin32='#define WIN32' |
2421 | 2920 else |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2921 _confcygwin="TARGET_CYGWIN = no" |
1 | 2922 fi |
2923 | |
3065 | 2924 # Dynamic linking flags |
2925 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly) | |
2926 _ld_dl_dynamic='' | |
2927 bsd && _ld_dl_dynamic='-rdynamic' | |
2928 test "$_xanim" = yes && _ld_dl_dynamic='-rdynamic' | |
2929 | |
2930 _ld_arch="$_ld_arch $_ld_pthread $_ld_dl $_ld_dl_dynamic" | |
2943 | 2931 bsdos && _ld_arch="$_ld_arch -ldvd" |
1979
6278f566cd91
tdfxfb yuv driver by Zeljko Stevanovic <zsteva@ptt.yu>
arpi
parents:
1933
diff
changeset
|
2932 |
2943 | 2933 _def_debug='#undef MP_DEBUG' |
2934 test "$_debug" && _def_debug='#define MP_DEBUG 1' | |
287 | 2935 |
2943 | 2936 _def_linux='#undef TARGET_LINUX' |
2937 linux && _def_linux='#define TARGET_LINUX 1' | |
11 | 2938 |
4168 | 2939 # TODO cleanup the vidix stuff here |
4089 | 2940 _def_vidix='#define CONFIG_VIDIX 1' |
2941 test "$_vidix" = no && _def_vidix='#undef CONFIG_VIDIX' | |
4168 | 2942 if test "$_vidix" = yes && test "$_x11" = yes; then |
4170 | 2943 _vosrc="$_vosrc vo_xvidix.c" |
4168 | 2944 _vomodules="xvidix $_vomodules" |
2945 fi | |
4089 | 2946 echo Checking for vidix ... "$_vidix" |
4507
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2947 |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2948 _def_new_input='#undef HAVE_NEW_INPUT' |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2949 _def_joystick='#undef HAVE_JOYSTICK' |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2950 echo Checking for new input ... "$_new_input" |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2951 if test "$_new_input" = yes ; then |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2952 _def_new_input='#define HAVE_NEW_INPUT 1' |
4824
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2953 _ld_new_input="-Linput -linput" |
4507
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2954 if test "$_joystick" = yes ; then |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2955 if linux ; then |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2956 # TODO add some check |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2957 _def_joystick='#define HAVE_JOYSTICK 1' |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2958 else |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2959 _joystick="no (unsupported under $system_name)" |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2960 fi |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2961 fi |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2962 echo Checking for joystick ... "$_joystick" |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2963 fi |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
2964 |
4824
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2965 echocheck "lirc" |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2966 if test "$_lirc" = auto ; then |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2967 _lirc=no |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2968 if test -c /dev/lirc ; then |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2969 cat > $TMPC <<EOF |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2970 #include <lirc/lirc_client.h> |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2971 int main(void) { return 0; } |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2972 EOF |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2973 cc_check -llirc_client && _lirc=yes |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2974 fi |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2975 fi |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2976 if test "$_lirc" = yes ; then |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2977 _def_lirc='#define HAVE_LIRC 1' |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2978 if test "$_new_input" = yes ; then |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2979 _ld_new_input="-llirc_client $_ld_new_input" |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2980 else |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2981 _ld_lirc='-llirc_client' |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2982 fi |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2983 else |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2984 _def_lirc='#undef HAVE_LIRC' |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2985 fi |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2986 echores "$_lirc" |
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2987 |
4864 | 2988 # checking for extra performance |
2989 _def_xp='#undef __ENABLE_XP' | |
2990 test "$_enable_xp" = yes && _def_xp='#define __ENABLE_XP 1' | |
2991 echo Checking for xp = bleeding edge ... "$_enable_xp" | |
4824
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
2992 |
2943 | 2993 ############################################################################# |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2994 echo "Creating config.mak" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2995 cat > config.mak << EOF |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
2996 # -------- Generated by configure ----------- |
2727 | 2997 |
2943 | 2998 LANG = C |
2999 TARGET_OS = $system_name | |
3000 prefix = $_prefix | |
3747 | 3001 DATADIR = $_datadir |
3002 CONFDIR = $_confdir | |
2943 | 3003 AR = ar |
3004 CC = $_cc | |
4172 | 3005 AWK = $_awk |
2943 | 3006 # OPTFLAGS = -O4 $_profile $_debug $_march $_mcpu -pipe -fomit-frame-pointer -ffast-math |
4346
d45744794581
vo_zr no more depends on libjpeg - it requires libavcodec now. patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4345
diff
changeset
|
3007 OPTFLAGS = $CFLAGS |
2943 | 3008 EXTRA_INC = $_inc_extra $_inc_gtk |
3009 WIN32_PATH = -DWIN32_PATH=\\"$_win32libdir\\" | |
2821
7f2acef8a3b2
added --enable-tv and --disable-tv (default is disabled)
alex
parents:
2811
diff
changeset
|
3010 |
2943 | 3011 STREAMING = $_streaming |
3919 | 3012 STREAMING_LIB = $_ld_streaming |
4089 | 3013 VIDIX = $_vidix |
2896
3a44575edc30
Added --enable-libvo2, NOTE: it doesn't compile with libvo2 yet!
mswitch
parents:
2894
diff
changeset
|
3014 |
4489 | 3015 OPENDIVX = $_opendivx |
3016 | |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
3017 VO2 = $_vo2 |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
3018 |
4656 | 3019 PNG = $_mkf_png |
3020 | |
3161 | 3021 EXTRA_LIB = $_ld_extra |
3022 Z_LIB = $_ld_static $_ld_zlib | |
3207
6ea45643506c
new configure didn't build mplayer with mediaLib on solaris any more.
jkeil
parents:
3206
diff
changeset
|
3023 HAVE_MLIB = $_mlib |
3161 | 3024 STATIC_LIB = $_ld_static |
3025 | |
2943 | 3026 X11_INC = $_inc_x11 |
3161 | 3027 X11DIR = $_ld_x11 |
3028 | |
3029 # video output | |
3337 | 3030 X_LIB = $_ld_x11 $_ld_gl $_ld_dga $_ld_xv $_ld_vm $_ld_xinerama $_ld_mad $_ld_sock |
3161 | 3031 GGI_LIB = $_ld_ggi |
3032 MLIB_LIB = $_ld_mlib | |
3207
6ea45643506c
new configure didn't build mplayer with mediaLib on solaris any more.
jkeil
parents:
3206
diff
changeset
|
3033 MLIB_INC = $_inc_mlib |
3161 | 3034 PNG_LIB = $_ld_png |
3035 SDL_LIB = $_ld_sdl | |
3036 SVGA_LIB = $_ld_svga | |
3037 AA_LIB = $_ld_aa | |
3038 | |
3039 # audio output | |
3040 ALSA_LIB = $_ld_alsa | |
3276 | 3041 NAS_LIB = $_ld_nas |
3161 | 3042 MAD_LIB = $_ld_mad |
3043 VORBIS_LIB = $_ld_vorbis | |
3044 SGIAUDIO_LIB = $_ld_sgiaudio | |
3045 | |
3046 # input | |
3047 TERMCAP_LIB = $_ld_termcap | |
3048 LIRC_LIB = $_ld_lirc | |
2943 | 3049 CSS_USE = $_css |
3161 | 3050 CSS_LIB = $_ld_css |
2943 | 3051 SDL_INC = $_inc_sdl |
3052 W32_DEP = $_dep_win32 | |
3161 | 3053 W32_LIB = $_ld_win32 |
2943 | 3054 DS_DEP = $_dep_dshow |
3161 | 3055 DS_LIB = $_ld_dshow |
2949 | 3056 AV_DEP = $_dep_libavcodec |
3161 | 3057 AV_LIB = $_ld_libavcodec |
3432 | 3058 MP1E_DEP = $_dep_mp1e |
3059 MP1E_LIB = $_ld_mp1e | |
3161 | 3060 ARCH_LIB = $_ld_arch $_ld_iconv |
3061 DIVX4LINUX = $_divx4linux | |
4678 | 3062 XVID = $_xvid |
3161 | 3063 DECORE_LIB = $_ld_decore |
3079 | 3064 MENCODER = $_mencoder |
3356
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
3065 ENCORE_LIB = $_ld_encore $_ld_mp3lame |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
3066 DIRECTFB_LIB = $_ld_directfb |
4824
e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
albeu
parents:
4801
diff
changeset
|
3067 NEW_INPUT_LIB = $_ld_new_input |
1258 | 3068 |
3069 # --- Some stuff for autoconfigure ---- | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
3070 $_target_arch |
1436
42bd7f4c500b
Pre commit so I won't have to sync with later configure changes (cygwin stuff)
atmos4
parents:
1428
diff
changeset
|
3071 $_confcygwin |
1258 | 3072 TARGET_CPU=$iproc |
2943 | 3073 TARGET_MMX = $_mmx |
3074 TARGET_MMX2 = $_mmx2 | |
3075 TARGET_3DNOW = $_3dnow | |
3076 TARGET_3DNOWEX = $_3dnowex | |
3077 TARGET_SSE = $_sse | |
1258 | 3078 |
2943 | 3079 BINUTILS = $_binutils |
1718
3df3982c2c36
Fix "echo -n" problems on solaris for the new GUI stuff.
jkeil
parents:
1694
diff
changeset
|
3080 |
1694 | 3081 # --- GUI stuff --- |
2988 | 3082 GTKLIB = $_ld_static $_ld_gtk |
3083 GLIBLIB = $_ld_static $_ld_glib | |
3422 | 3084 GTK_LIBS = $_ld_static $_ld_gui |
2943 | 3085 GUI = $_gui |
3086 DEBUG = -DDEBUG | |
1694 | 3087 |
4864 | 3088 # --- HAZARDOUS STUFF |
3089 | |
3090 ENABLE_XP=$_enable_xp | |
3091 | |
1258 | 3092 EOF |
1 | 3093 |
2943 | 3094 ############################################################################# |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
3095 echo "Creating config.h" |
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
3096 cat > config.h << EOF |
3430
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
3097 /* -------- This file has been automatically generated by configure --------- |
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
3098 Note: Any changes in it will be lost when you run configure again. */ |
1 | 3099 |
4137 | 3100 #define USR_PREFIX "$_prefix" |
3101 | |
2992
ef58de7a942f
Make description for SIMPLE_IDCT better and make #define consisten with others.
atmos4
parents:
2991
diff
changeset
|
3102 /* define this to use simple idct with patched libavcodec */ |
ef58de7a942f
Make description for SIMPLE_IDCT better and make #define consisten with others.
atmos4
parents:
2991
diff
changeset
|
3103 #define SIMPLE_IDCT 1 |
2991
ad107e7bb843
small "make it easier to compile" addition, enable SIMPLE_IDCT by default
atmos4
parents:
2990
diff
changeset
|
3104 |
2943 | 3105 #define USE_OSD 1 |
3106 #define USE_SUB 1 | |
1422 | 3107 |
3430
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
3108 /* Toggles debugging informations */ |
2943 | 3109 $_def_debug |
1565 | 3110 |
3430
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
3111 /* Indicates is Ogle's libdvdread is available for DVD playback */ |
2943 | 3112 $_def_dvdread |
1596 | 3113 |
1353 | 3114 /* Common data directory (for fonts, etc) */ |
3115 #define DATADIR "$_datadir" | |
3747 | 3116 #define CONFDIR "$_confdir" |
4137 | 3117 #define LIBDIR "$_libdir" |
1353 | 3118 |
2525 | 3119 /* Define this to compile stream-caching support, it can be enabled via |
3120 -cache <kilobytes> */ | |
2943 | 3121 #define USE_STREAM_CACHE 1 |
2525 | 3122 |
4678 | 3123 /* Define to include support for XviD/Divx4Linux/OpenDivx */ |
4489 | 3124 $_def_divx |
3125 | |
4678 | 3126 /* Define for using new XviD/DivX4Linux library, instead of open-source OpenDivX */ |
1349 | 3127 /* You have to change DECORE_LIBS in config.mak too! */ |
2943 | 3128 $_def_decore |
3430
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
3129 |
4176
116abdd0aed1
small gtk bug fix (-display bug, baze gabu, miattad fogok elkarhozni:), and remove gui dependencie in mencoder
pontscho
parents:
4172
diff
changeset
|
3130 /* If build mencoder */ |
116abdd0aed1
small gtk bug fix (-display bug, baze gabu, miattad fogok elkarhozni:), and remove gui dependencie in mencoder
pontscho
parents:
4172
diff
changeset
|
3131 $_mencoder_flag |
116abdd0aed1
small gtk bug fix (-display bug, baze gabu, miattad fogok elkarhozni:), and remove gui dependencie in mencoder
pontscho
parents:
4172
diff
changeset
|
3132 |
4678 | 3133 /* Indicates if XviD/Divx4linux encore is available |
3901 | 3134 Note: for mencoder */ |
2943 | 3135 $_def_encore |
1349 | 3136 |
3430
d461d729321c
mencoder was still being built (unsucessfully) if mp3lame was missing
pl
parents:
3422
diff
changeset
|
3137 /* Indicates if libmp3lame is available |
3901 | 3138 Note: for mencoder */ |
3356
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
3139 $_def_mp3lame |
2ef511fe1f57
mp3lame detection separated, some unneeded -lm removed
arpi
parents:
3337
diff
changeset
|
3140 |
4120 | 3141 /* Define libmp1e for realtime mpeg encoding (for DXR3 and DVB cards) */ |
3432 | 3142 $_def_mp1e |
3143 | |
1 | 3144 /* Define this to enable avg. byte/sec-based AVI sync method by default: |
1599 | 3145 (use -bps or -nobps commandline option for run-time method selection) |
3146 -bps gives better sync for vbr mp3 audio, it is now default */ | |
2943 | 3147 #define AVI_SYNC_BPS 1 |
1 | 3148 |
3161 | 3149 /* Undefine this if you do not want to select mono audio (left or right) |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
3150 with a stereo MPEG layer 2/3 audio stream. The command-line option |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
3151 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
3152 right-only), with 0 being the default. |
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
3153 */ |
2943 | 3154 #define USE_FAKE_MONO 1 |
732
e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
arpi_esp
parents:
723
diff
changeset
|
3155 |
1 | 3156 /* Undefine this if your soundcard driver has no working select(). |
3157 If you have kernel Oops, player hangups, or just no audio, you should | |
3158 try to recompile MPlayer with this option disabled! */ | |
2943 | 3159 $_def_select |
1 | 3160 |
2151
a9d91476085a
modifications to use iconv(3) function to recode text of subs (autodetect)
atlka
parents:
2149
diff
changeset
|
3161 /* define this to use iconv(3) function to codepage conversions */ |
2943 | 3162 $_def_iconv |
1 | 3163 |
3015 | 3164 /* define this to use RTC (/dev/rtc) for video timers (LINUX only) */ |
3165 $_def_rtc | |
3166 | |
755 | 3167 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */ |
3168 #define MAX_OUTBURST 65536 | |
3169 | |
586 | 3170 /* set up audio OUTBURST. Do not change this! */ |
3171 #define OUTBURST 512 | |
3172 | |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
3173 /* Define this if your system has the header file for the OSS sound interface */ |
2943 | 3174 $_def_sys_soundcard |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
3175 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
3176 /* Define this if your system has the "malloc.h" header file */ |
2943 | 3177 $_def_malloc |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
3178 |
2774 | 3179 /* memalign is mapped to malloc if unsupported */ |
2943 | 3180 $_def_memalign |
2774 | 3181 #ifndef HAVE_MEMALIGN |
3182 # define memalign(a,b) malloc(b) | |
3183 #endif | |
1678 | 3184 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
3185 /* Define this if your system has the "alloca.h" header file */ |
2943 | 3186 $_def_alloca |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
3187 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
3188 /* Define this if your system has the "sys/mman.h" header file */ |
2943 | 3189 $_def_mman |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
3190 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1284
diff
changeset
|
3191 /* Define this if you have the elf dynamic linker -ldl library */ |
2943 | 3192 $_def_dl |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
3193 |
1261
5bb83ed0db33
- Ask 'gcc' for the name of the assembler binary used by the gcc compiler; use
jkeil
parents:
1258
diff
changeset
|
3194 /* Define this if you have the kstat kernel statistics library */ |
2943 | 3195 $_def_kstat |
1261
5bb83ed0db33
- Ask 'gcc' for the name of the assembler binary used by the gcc compiler; use
jkeil
parents:
1258
diff
changeset
|
3196 |
2482 | 3197 /* Define this if you have zlib */ |
2943 | 3198 $_def_zlib |
2482 | 3199 |
3004 | 3200 /* Define this if you have shm support */ |
3201 $_def_shm | |
3202 | |
2905
8927ef5c4870
Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)
jkeil
parents:
2898
diff
changeset
|
3203 /* Define this if your system has vsscanf */ |
2943 | 3204 $_def_vsscanf |
2905
8927ef5c4870
Add a test for 'vsscanf()' (it's missing on solaris / non iso-c99 systems)
jkeil
parents:
2898
diff
changeset
|
3205 |
1 | 3206 /* LIRC (remote control, see www.lirc.org) support: */ |
2943 | 3207 $_def_lirc |
1 | 3208 |
492 | 3209 /* DeCSS support using libcss */ |
2943 | 3210 $_def_css |
492 | 3211 |
41 | 3212 /* Define this to enable MPEG 1/2 image postprocessing (requires FAST cpu!) */ |
2943 | 3213 #define MPEG12_POSTPROC 1 |
41 | 3214 |
2228 | 3215 /* Define this to enable image postprocessing in libavcodec (requires FAST cpu!) */ |
2943 | 3216 $_def_ffpostprocess |
2228 | 3217 |
4489 | 3218 /* Define to include support for OpenDivx postprocessing */ |
3219 $_def_odivx_postprocess | |
2184 | 3220 |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1515
diff
changeset
|
3221 /* Win32 DLL support */ |
2943 | 3222 $_def_win32 |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1515
diff
changeset
|
3223 |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
3224 /* DirectShow support */ |
2943 | 3225 $_def_dshow |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
590
diff
changeset
|
3226 |
1279 | 3227 /* ffmpeg's libavcodec support (requires libavcodec source) */ |
2943 | 3228 $_def_libavcodec |
2945 | 3229 $_def_libavcodecso |
2943 | 3230 |
4120 | 3231 /* Use libavcodec's decoders */ |
2943 | 3232 #define CONFIG_DECODERS 1 |
4120 | 3233 /* Use libavcodec's encoders */ |
3659 | 3234 #define CONFIG_ENCODERS 1 |
1279 | 3235 |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
3236 /* XAnim DLL support */ |
2943 | 3237 $_def_xanim |
4120 | 3238 /* Default search path */ |
2943 | 3239 $_def_xanim_path |
2657
7f92b286575e
checkin for xanim support, also --disable-xanim and --with-xanimlibdir option added
alex
parents:
2644
diff
changeset
|
3240 |
642 | 3241 /* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/ |
2943 | 3242 $_def_fastmemcpy |
642 | 3243 |
723 | 3244 /* gui support, please do not edit this option */ |
2943 | 3245 $_def_gui |
1004 | 3246 #define PREFIX "$_prefix" |
723 | 3247 |
4120 | 3248 /* Audio output drivers */ |
2943 | 3249 $_def_ossaudio |
4801
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
3250 $_def_ossaudio_devdsp |
3e011ae799fa
added linux devfs support (for oss), original patch by Olaf Kohler <thorin@yifan.net>
alex
parents:
4785
diff
changeset
|
3251 $_def_ossaudio_devmixer |
2943 | 3252 $_def_alsa5 |
3253 $_def_alsa9 | |
3254 $_def_sunaudio | |
3255 $_def_sgiaudio | |
3276 | 3256 $_def_nas |
3257 | |
947
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
3258 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */ |
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
3259 #undef FAST_OSD |
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
3260 #undef FAST_OSD_TABLE |
76fd9463b9d3
FAST_OSD option to disable font outline antialiasing
arpi_esp
parents:
912
diff
changeset
|
3261 |
2821
7f2acef8a3b2
added --enable-tv and --disable-tv (default is disabled)
alex
parents:
2811
diff
changeset
|
3262 /* Enable TV Interface support */ |
2943 | 3263 $_def_tv |
2821
7f2acef8a3b2
added --enable-tv and --disable-tv (default is disabled)
alex
parents:
2811
diff
changeset
|
3264 |
3242
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
3265 /* Enable Video 4 Linux TV interface support */ |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
3266 $_def_tv_v4l |
a5f693377e23
added auto detection of tv v4l and changed tv to enabled
alex
parents:
3241
diff
changeset
|
3267 |
1 | 3268 /* Define if your processor stores words with the most significant |
3269 byte first (like Motorola and SPARC, unlike Intel and VAX). */ | |
2943 | 3270 $_def_words_endian |
1 | 3271 |
2943 | 3272 $_def_arch |
1 | 3273 |
2943 | 3274 /* Define this for Cygwin build for win32 */ |
3275 $_def_confwin32 | |
1441
039bd84a6c33
Make cygwin define WIN32 for compatibility with mingw and visualc, ...
atmos4
parents:
1438
diff
changeset
|
3276 |
849 | 3277 /* Define this to any prefered value from 386 up to infinity with step 100 */ |
3278 #define __CPU__ $iproc | |
3279 | |
2943 | 3280 $_def_linux |
2242 | 3281 |
3259 | 3282 $_def_vcd |
3283 | |
1495 | 3284 #ifdef sun |
3285 #define DEFAULT_CDROM_DEVICE "/vol/dev/aliases/cdrom0" | |
1608
3005f75b82fd
Provide a better default for the DVD device on solaris.
jkeil
parents:
1601
diff
changeset
|
3286 #define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE |
1495 | 3287 #else |
3288 #define DEFAULT_CDROM_DEVICE "/dev/cdrom" | |
1608
3005f75b82fd
Provide a better default for the DVD device on solaris.
jkeil
parents:
1601
diff
changeset
|
3289 #define DEFAULT_DVD_DEVICE "/dev/dvd" |
1495 | 3290 #endif |
3291 | |
1596 | 3292 |
849 | 3293 /*---------------------------------------------------------------------------- |
3294 ** | |
3295 ** NOTE: Instead of modifying these definitions here, use the | |
3296 ** --enable/--disable options of the ./configure script! | |
3297 ** See ./configure --help for details. | |
3298 ** | |
3299 *---------------------------------------------------------------------------*/ | |
1 | 3300 |
3089 | 3301 /* nanosleep support */ |
3302 $_def_nanosleep | |
3303 | |
1 | 3304 /* termcap flag for getch2.c */ |
2943 | 3305 $_def_termcap |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
3306 |
3007 | 3307 /* termios flag for getch2.c */ |
3308 $_def_termios | |
3281
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
3309 $_def_termios_h |
310c0b9bea21
detect termios.h if no sys/termios.h (qnx getch2 support working)
alex
parents:
3276
diff
changeset
|
3310 $_def_termios_sys_h |
3007 | 3311 |
1826
fc5efe18d15e
OggVorbis lib detection, manual language selection and some minor stuff.
atmos4
parents:
1767
diff
changeset
|
3312 /* enable PNG support */ |
2943 | 3313 $_def_png |
1 | 3314 |
2421 | 3315 /* libmad support */ |
2943 | 3316 $_def_mad |
2421 | 3317 |
1826
fc5efe18d15e
OggVorbis lib detection, manual language selection and some minor stuff.
atmos4
parents:
1767
diff
changeset
|
3318 /* enable OggVorbis support */ |
2943 | 3319 $_def_vorbis |
1826
fc5efe18d15e
OggVorbis lib detection, manual language selection and some minor stuff.
atmos4
parents:
1767
diff
changeset
|
3320 |
4120 | 3321 /* enable streaming */ |
2943 | 3322 $_def_streaming |
1057
555f58131861
fixed --disable-as-checking, added --enable-streaming
arpi_esp
parents:
1042
diff
changeset
|
3323 |
4089 | 3324 /* enables / disables vidix usage */ |
3325 $_def_vidix | |
3326 | |
4507
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
3327 /* enables / disables new input */ |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
3328 $_def_new_input |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
3329 |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
3330 /* enables / disables new input joystick support */ |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
3331 $_def_joystick |
dcf46e65bd29
Added options to enable new input and joystick support
albeu
parents:
4489
diff
changeset
|
3332 |
1 | 3333 /* Extension defines */ |
2943 | 3334 $_def_3dnow // only define if you have 3DNOW (AMD k6-2, AMD Athlon, iDT WinChip, etc.) |
3335 $_def_3dnowex // only define if you have 3DNOWEX (AMD Athlon, etc.) | |
3336 $_def_mmx // only define if you have MMX (newer x86 chips, not P54C/PPro) | |
3337 $_def_mmx2 // only define if you have MMX2 (Athlon/PIII/4/CelII) | |
3338 $_def_sse // only define if you have SSE (Intel Pentium III/4 or Celeron II) | |
3841 | 3339 $_def_sse2 // only define if you have SSE2 (Intel Pentium 4) |
1 | 3340 |
1438 | 3341 #ifdef HAVE_MMX |
2943 | 3342 #define USE_MMX_IDCT 1 |
1438 | 3343 #endif |
3344 | |
2943 | 3345 $_def_mlib // Sun mediaLib, available only on solaris |
1718
3df3982c2c36
Fix "echo -n" problems on solaris for the new GUI stuff.
jkeil
parents:
1694
diff
changeset
|
3346 |
1680
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
3347 /* libmpeg2 uses a different feature test macro for mediaLib */ |
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
3348 #ifdef HAVE_MLIB |
2943 | 3349 #define LIBMPEG2_MLIB 1 |
1680
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
3350 #endif |
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1678
diff
changeset
|
3351 |
1 | 3352 /* libvo options */ |
2961 | 3353 #define SCREEN_SIZE_X 1 |
3354 #define SCREEN_SIZE_Y 1 | |
2943 | 3355 $_def_x11 |
3356 $_def_xv | |
3357 $_def_vm | |
3358 $_def_xinerama | |
3359 $_def_gl | |
3360 $_def_dga | |
3361 $_def_dga2 | |
3362 $_def_sdl | |
704 | 3363 /* defined for SDLlib with keyrepeat bugs (before 1.2.1) */ |
2943 | 3364 $_def_sdlbuggy |
3365 $_def_ggi | |
3366 $_def_3dfx | |
3367 $_def_tdfxfb | |
3275
38344371432f
vo DirectFB support by Jiri Svoboda <Jiri.Svoboda@seznam.cz>
arpi
parents:
3259
diff
changeset
|
3368 $_def_directfb |
4211
2c1ca684ff04
zr en/disable, libjpeg detection - patch by Rik Snel <rsnel@cube.dyndns.org>
arpi
parents:
4209
diff
changeset
|
3369 $_def_zr |
2943 | 3370 $_def_mga |
3371 $_def_xmga | |
3372 $_def_syncfb | |
3373 $_def_fbdev | |
4209
b47f7697541d
fbdev nocopy option, and static pthread fixes - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents:
4183
diff
changeset
|
3374 $_def_fbdev_nocopy |
2943 | 3375 $_def_dxr3 |
3376 $_def_dvb | |
3377 $_def_svga | |
4561 | 3378 $_def_vesa |
2943 | 3379 $_def_xdpms |
3380 $_def_aa | |
1 | 3381 |
1694 | 3382 /* used by GUI: */ |
2943 | 3383 $_def_xshape |
1694 | 3384 |
2943 | 3385 #if defined(HAVE_GL) || defined(HAVE_X11) || defined(HAVE_XV) |
3386 #define X11_FULLSCREEN 1 | |
1 | 3387 #endif |
3388 | |
4864 | 3389 $_def_xp |
3390 | |
3391 #ifdef __ENABLE_XP | |
3392 #define __ENABLE_DEC_AHEAD 1 | |
3393 #endif | |
3394 | |
1 | 3395 EOF |
3396 | |
2943 | 3397 ############################################################################# |
1 | 3398 |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
3399 echo "Creating libvo/config.mak" |
2943 | 3400 _voobj=`echo $_vosrc | sed -e 's/\.c/\.o/g'` |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
3401 cat > libvo/config.mak << EOF |
1 | 3402 include ../config.mak |
2943 | 3403 OPTIONAL_SRCS = $_vosrc |
3404 OPTIONAL_OBJS = $_voobj | |
1 | 3405 EOF |
3406 | |
2943 | 3407 ############################################################################# |
965 | 3408 |
3868
8a4ef002bb89
opendivx listed at codecs, libvo2/config.mak is optional
arpi
parents:
3865
diff
changeset
|
3409 if test -d "libvo2" ; then |
8a4ef002bb89
opendivx listed at codecs, libvo2/config.mak is optional
arpi
parents:
3865
diff
changeset
|
3410 |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
3411 echo "Creating libvo2/config.mak" |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
3412 _vo2obj=`echo $_vo2src | sed -e 's/\.c/\.o/g'` |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
3413 cat > libvo2/config.mak << EOF |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
3414 include ../config.mak |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
3415 OPTIONAL_SRCS = $_vo2src |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
3416 OPTIONAL_OBJS = $_vo2obj |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
3417 EOF |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
3418 |
3868
8a4ef002bb89
opendivx listed at codecs, libvo2/config.mak is optional
arpi
parents:
3865
diff
changeset
|
3419 fi |
8a4ef002bb89
opendivx listed at codecs, libvo2/config.mak is optional
arpi
parents:
3865
diff
changeset
|
3420 |
2947
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
3421 ############################################################################# |
987c77cbb4de
last part of changes since around configure 230 applied
pl
parents:
2945
diff
changeset
|
3422 |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
3423 echo "Creating libao2/config.mak" |
2943 | 3424 _aoobj=`echo $_aosrc | sed -e 's/\.c/\.o/g'` |
2973
82943d529c69
merge of latest commits to configure1 (alex's qnx support)
pl
parents:
2962
diff
changeset
|
3425 cat > libao2/config.mak << EOF |
965 | 3426 include ../config.mak |
2943 | 3427 OPTIONAL_SRCS = $_aosrc |
3428 OPTIONAL_OBJS = $_aoobj | |
3429 EOF | |
965 | 3430 |
2943 | 3431 ############################################################################# |
965 | 3432 |
2943 | 3433 echo "Creating help_mp.h" |
3434 cat > help_mp.h << EOF | |
3435 #include "$_mp_help" | |
965 | 3436 EOF |
3437 | |
2943 | 3438 ############################################################################# |
3439 | |
3169
b6bb21d686cd
completed the summary displayed after running configure
pl
parents:
3161
diff
changeset
|
3440 #FIXME: add something like "Optimizing for: i686 mmx mmx2 sse" |
1 | 3441 cat << EOF |
3442 | |
3443 Config files successfully generated by ./configure ! | |
2943 | 3444 |
3445 Install prefix: $_prefix | |
3446 Data directory: $_datadir | |
3747 | 3447 Config direct.: $_confdir |
3193
53a6d2fc1498
cosmetical change of driver summary - do not print always enabled stuff
arpi
parents:
3189
diff
changeset
|
3448 |
53a6d2fc1498
cosmetical change of driver summary - do not print always enabled stuff
arpi
parents:
3189
diff
changeset
|
3449 Enabled optional drivers: |
53a6d2fc1498
cosmetical change of driver summary - do not print always enabled stuff
arpi
parents:
3189
diff
changeset
|
3450 Input: $_inputmodules |
53a6d2fc1498
cosmetical change of driver summary - do not print always enabled stuff
arpi
parents:
3189
diff
changeset
|
3451 Codecs: $_codecmodules |
53a6d2fc1498
cosmetical change of driver summary - do not print always enabled stuff
arpi
parents:
3189
diff
changeset
|
3452 Audio output: $_aomodules |
53a6d2fc1498
cosmetical change of driver summary - do not print always enabled stuff
arpi
parents:
3189
diff
changeset
|
3453 Video output: $_vomodules |
2190 | 3454 |
2943 | 3455 'config.h' and 'config.mak' contain your configuration options. |
3456 Note: if you alter theses files (for instance CFLAGS) MPlayer may no longer | |
3457 compile *** DON'T BUGREPORT if you tweak these files *** | |
3458 | |
3459 'make' will now compile MPlayer and 'make install' will install it. | |
2190 | 3460 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'. |
1 | 3461 |
3462 EOF | |
3463 | |
1618 | 3464 |
2171 | 3465 if test "$_mtrr" = yes ; then |
2943 | 3466 echo "Please check mtrr settings at /proc/mtrr (see DOCS/video.html#2.2.1.1)" |
3467 echo | |
1 | 3468 fi |
3469 | |
2171 | 3470 if test "$_sdl" = "outdated" ; then |
2190 | 3471 cat <<EOF |
3472 You have an outdated version of libSDL installed (older than v1.1.7) and SDL | |
3473 support has therefore been disabled. | |
3474 | |
3475 Please upgrade to a more recent version (version 1.1.8 and above are known to | |
3476 work). You may get this library from: http://www.libsdl.org | |
3477 | |
3478 You need to re-run ./configure and recompile after updating SDL. If you are | |
3479 only interested in the libSDL audio drivers, then older version might work. | |
3480 | |
3481 Use --enable-sdl to force usage of libSDL. | |
3482 EOF | |
1 | 3483 fi |
3484 | |
2997
49b34fdc48bb
better support for --target: new boolean function x86()
pl
parents:
2996
diff
changeset
|
3485 if x86 ; then |
2425 | 3486 if test "$_win32" = no ; then |
3487 if test "$_win32libdir" ; then | |
3488 cat <<EOF | |
2190 | 3489 Failed to find a WIN32 codecs dir at $_win32libdir! |
3490 Create it and copy the DLL files there! (You can get them from your windows | |
3491 directory or download them from: | |
2225 | 3492 ftp://ftp.MPlayerHQ.hu/MPlayer/releases/w32codec.zip |
2190 | 3493 EOF |
2425 | 3494 fi |
2190 | 3495 else |
2943 | 3496 if test "$_win32libdir" ; then |
3189
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
3497 # echo "Ok, found Win32 codecs directory at $_win32libdir." |
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
3498 : |
2427 | 3499 else |
3500 cat <<EOF | |
2594 | 3501 Failed to find a WIN32 codecs dir! |
2427 | 3502 Create it and copy the DLL files there! (You can get them from your windows |
3503 directory or download them from: | |
3504 ftp://ftp.MPlayerHQ.hu/MPlayer/releases/w32codec.zip | |
3505 EOF | |
3506 fi | |
2190 | 3507 fi |
1 | 3508 else |
2943 | 3509 cat <<EOF |
2190 | 3510 NOTE: WIN32 codec DLLs are not supported on your CPU ($host_arch). |
3511 You may encounter a few AVI files that cannot be played due to missing | |
3512 opensource video/audio codec support. | |
3513 EOF | |
1 | 3514 fi |
3515 | |
3189
217f564f29ff
summary handling was not correct (bugs found by Nilmoni Deb and Tibcu)
pl
parents:
3187
diff
changeset
|
3516 |
2943 | 3517 cat <<EOF |
3518 | |
4034 | 3519 Check $TMPLOG if you wonder why an autodetection failed (check whether the |
3520 development headers/packages are installed). | |
3521 | |
3522 If you suspect a bug, please read DOCS/bugreports.html. | |
2943 | 3523 |
3524 EOF | |
3525 | |
4089 | 3526 if test "$_vidix" = no ; then |
3527 cat <<EOF | |
3528 You've disabled VIDIX. Although it would be better to PORT it instead. | |
3529 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
4120 | 3530 Also currently the only driver in VIDIX is for ATI Radeon and Rage128. |
3531 Matrox G200/400 needs to be ported. | |
4089 | 3532 EOF |
3533 fi | |
3534 | |
1021 | 3535 # Last move: |
2190 | 3536 rm -f "$TMPO" "$TMPC" "$TMPS" "$TMPCPP" |
1021 | 3537 |