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