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