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