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