Changeset cf5b3832dc6ad3fb4e55e9506e7e803d3e26ed53
- Timestamp:
- 04/05/02 03:05:22
(6 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1017968722 +0000
- git-parent:
[a33d6accd4cf7ff908b2bf17bb6a01cc3e77daee]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1017968722 +0000
- Message:
* introduced a memalign wrapper that will align the memory manually if
memalign doesn't exist.
void *vlc_memalign( size_t align, size_t size, void **pp_orig )
where the return value is the aligned pointer and *pp_orig is the pointer
that has to be freed afterwards.
the arithmetic I'm doing on the pointer to align it is not portable to
64bits architectures. If someone knows how to something portable, please
tell me ( and no I don't want to do if(sizeof(void *) == blabla) ).
Other little problem, I was planning to use posix_memalign by default in
the wrapper implementation but it doesn't work (someone can tell me what
I'm doing wrong ?)
* re-enabled the sse plugins on win32 as we don't have anymore alignment
issues.
* fixed typo in vout_directx.c
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ra33d6ac |
rcf5b383 |
|
| 3184 | 3184 | esac |
|---|
| 3185 | 3185 | |
|---|
| 3186 | | for ac_func in gettimeofday select strerror strtod strtol isatty usleep vasprintf swab sigrelse getpwuid memalign valloc |
|---|
| | 3186 | for ac_func in gettimeofday select strerror strtod strtol isatty usleep vasprintf swab sigrelse getpwuid memalign posix_memalign |
|---|
| 3187 | 3187 | do |
|---|
| 3188 | 3188 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 |
|---|
| … | … | |
| 5289 | 5289 | MMXEXT_MODULES="memcpymmxext idctmmxext motionmmxext" |
|---|
| 5290 | 5290 | THREEDNOW_MODULES="memcpy3dn imdct3dn downmix3dn" |
|---|
| 5291 | | if test x$SYS != xmingw32; then |
|---|
| 5292 | | SSE_MODULES="imdctsse downmixsse" |
|---|
| 5293 | | fi |
|---|
| | 5291 | SSE_MODULES="imdctsse downmixsse" |
|---|
| 5294 | 5292 | ALTIVEC_MODULES="idctaltivec motionaltivec" |
|---|
| 5295 | 5293 | |
|---|
| 5296 | 5294 | echo $ac_n "checking if \$CC groks MMX inline assembly""... $ac_c" 1>&6 |
|---|
| 5297 | | echo "configure:5298: checking if \$CC groks MMX inline assembly" >&5 |
|---|
| | 5295 | echo "configure:5296: checking if \$CC groks MMX inline assembly" >&5 |
|---|
| 5298 | 5296 | if eval "test \"`echo '$''{'ac_cv_mmx_inline'+set}'`\" = set"; then |
|---|
| 5299 | 5297 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5300 | 5298 | else |
|---|
| 5301 | 5299 | cat > conftest.$ac_ext <<EOF |
|---|
| 5302 | | #line 5303 "configure" |
|---|
| | 5300 | #line 5301 "configure" |
|---|
| 5303 | 5301 | #include "confdefs.h" |
|---|
| 5304 | 5302 | |
|---|
| … | … | |
| 5307 | 5305 | ; return 0; } |
|---|
| 5308 | 5306 | EOF |
|---|
| 5309 | | if { (eval echo configure:5310: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5307 | if { (eval echo configure:5308: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5310 | 5308 | rm -rf conftest* |
|---|
| 5311 | 5309 | ac_cv_mmx_inline=yes |
|---|
| … | … | |
| 5325 | 5323 | |
|---|
| 5326 | 5324 | echo $ac_n "checking if \$CC groks MMX EXT inline assembly""... $ac_c" 1>&6 |
|---|
| 5327 | | echo "configure:5328: checking if \$CC groks MMX EXT inline assembly" >&5 |
|---|
| | 5325 | echo "configure:5326: checking if \$CC groks MMX EXT inline assembly" >&5 |
|---|
| 5328 | 5326 | if eval "test \"`echo '$''{'ac_cv_mmxext_inline'+set}'`\" = set"; then |
|---|
| 5329 | 5327 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5330 | 5328 | else |
|---|
| 5331 | 5329 | cat > conftest.$ac_ext <<EOF |
|---|
| 5332 | | #line 5333 "configure" |
|---|
| | 5330 | #line 5331 "configure" |
|---|
| 5333 | 5331 | #include "confdefs.h" |
|---|
| 5334 | 5332 | |
|---|
| … | … | |
| 5337 | 5335 | ; return 0; } |
|---|
| 5338 | 5336 | EOF |
|---|
| 5339 | | if { (eval echo configure:5340: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5337 | if { (eval echo configure:5338: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5340 | 5338 | rm -rf conftest* |
|---|
| 5341 | 5339 | ac_cv_mmxext_inline=yes |
|---|
| … | … | |
| 5355 | 5353 | |
|---|
| 5356 | 5354 | echo $ac_n "checking if \$CC groks 3D Now! inline assembly""... $ac_c" 1>&6 |
|---|
| 5357 | | echo "configure:5358: checking if \$CC groks 3D Now! inline assembly" >&5 |
|---|
| | 5355 | echo "configure:5356: checking if \$CC groks 3D Now! inline assembly" >&5 |
|---|
| 5358 | 5356 | if eval "test \"`echo '$''{'ac_cv_3dnow_inline'+set}'`\" = set"; then |
|---|
| 5359 | 5357 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5360 | 5358 | else |
|---|
| 5361 | 5359 | cat > conftest.$ac_ext <<EOF |
|---|
| 5362 | | #line 5363 "configure" |
|---|
| | 5360 | #line 5361 "configure" |
|---|
| 5363 | 5361 | #include "confdefs.h" |
|---|
| 5364 | 5362 | |
|---|
| … | … | |
| 5367 | 5365 | ; return 0; } |
|---|
| 5368 | 5366 | EOF |
|---|
| 5369 | | if { (eval echo configure:5370: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5367 | if { (eval echo configure:5368: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5370 | 5368 | rm -rf conftest* |
|---|
| 5371 | 5369 | ac_cv_3dnow_inline=yes |
|---|
| … | … | |
| 5389 | 5387 | |
|---|
| 5390 | 5388 | echo $ac_n "checking if \$CC groks SSE inline assembly""... $ac_c" 1>&6 |
|---|
| 5391 | | echo "configure:5392: checking if \$CC groks SSE inline assembly" >&5 |
|---|
| | 5389 | echo "configure:5390: checking if \$CC groks SSE inline assembly" >&5 |
|---|
| 5392 | 5390 | if eval "test \"`echo '$''{'ac_cv_sse_inline'+set}'`\" = set"; then |
|---|
| 5393 | 5391 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5394 | 5392 | else |
|---|
| 5395 | 5393 | cat > conftest.$ac_ext <<EOF |
|---|
| 5396 | | #line 5397 "configure" |
|---|
| | 5394 | #line 5395 "configure" |
|---|
| 5397 | 5395 | #include "confdefs.h" |
|---|
| 5398 | 5396 | |
|---|
| … | … | |
| 5401 | 5399 | ; return 0; } |
|---|
| 5402 | 5400 | EOF |
|---|
| 5403 | | if { (eval echo configure:5404: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5401 | if { (eval echo configure:5402: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5404 | 5402 | rm -rf conftest* |
|---|
| 5405 | 5403 | ac_cv_sse_inline=yes |
|---|
| … | … | |
| 5426 | 5424 | if test x$SYS != xmingw32; then |
|---|
| 5427 | 5425 | echo $ac_n "checking if \$CC groks Altivec inline assembly""... $ac_c" 1>&6 |
|---|
| 5428 | | echo "configure:5429: checking if \$CC groks Altivec inline assembly" >&5 |
|---|
| | 5426 | echo "configure:5427: checking if \$CC groks Altivec inline assembly" >&5 |
|---|
| 5429 | 5427 | if eval "test \"`echo '$''{'ac_cv_altivec_inline'+set}'`\" = set"; then |
|---|
| 5430 | 5428 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5431 | 5429 | else |
|---|
| 5432 | 5430 | cat > conftest.$ac_ext <<EOF |
|---|
| 5433 | | #line 5434 "configure" |
|---|
| | 5431 | #line 5432 "configure" |
|---|
| 5434 | 5432 | #include "confdefs.h" |
|---|
| 5435 | 5433 | |
|---|
| … | … | |
| 5438 | 5436 | ; return 0; } |
|---|
| 5439 | 5437 | EOF |
|---|
| 5440 | | if { (eval echo configure:5441: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5438 | if { (eval echo configure:5439: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5441 | 5439 | rm -rf conftest* |
|---|
| 5442 | 5440 | ac_cv_altivec_inline=yes |
|---|
| … | … | |
| 5448 | 5446 | CFLAGS="$CFLAGS -Wa,-m7400" |
|---|
| 5449 | 5447 | cat > conftest.$ac_ext <<EOF |
|---|
| 5450 | | #line 5451 "configure" |
|---|
| | 5448 | #line 5449 "configure" |
|---|
| 5451 | 5449 | #include "confdefs.h" |
|---|
| 5452 | 5450 | |
|---|
| … | … | |
| 5455 | 5453 | ; return 0; } |
|---|
| 5456 | 5454 | EOF |
|---|
| 5457 | | if { (eval echo configure:5458: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5455 | if { (eval echo configure:5456: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5458 | 5456 | rm -rf conftest* |
|---|
| 5459 | 5457 | ac_cv_altivec_inline="-Wa,-m7400" |
|---|
| … | … | |
| 5487 | 5485 | |
|---|
| 5488 | 5486 | echo $ac_n "checking if \$CC groks Altivec C extensions""... $ac_c" 1>&6 |
|---|
| 5489 | | echo "configure:5490: checking if \$CC groks Altivec C extensions" >&5 |
|---|
| | 5487 | echo "configure:5488: checking if \$CC groks Altivec C extensions" >&5 |
|---|
| 5490 | 5488 | if eval "test \"`echo '$''{'ac_cv_c_altivec'+set}'`\" = set"; then |
|---|
| 5491 | 5489 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 5495 | 5493 | # Darwin test |
|---|
| 5496 | 5494 | cat > conftest.$ac_ext <<EOF |
|---|
| 5497 | | #line 5498 "configure" |
|---|
| | 5495 | #line 5496 "configure" |
|---|
| 5498 | 5496 | #include "confdefs.h" |
|---|
| 5499 | 5497 | |
|---|
| … | … | |
| 5502 | 5500 | ; return 0; } |
|---|
| 5503 | 5501 | EOF |
|---|
| 5504 | | if { (eval echo configure:5505: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5502 | if { (eval echo configure:5503: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5505 | 5503 | rm -rf conftest* |
|---|
| 5506 | 5504 | ac_cv_c_altivec=-faltivec |
|---|
| … | … | |
| 5513 | 5511 | CFLAGS="$save_CFLAGS $CFLAGS_IDCTALTIVEC -fvec" |
|---|
| 5514 | 5512 | cat > conftest.$ac_ext <<EOF |
|---|
| 5515 | | #line 5516 "configure" |
|---|
| | 5513 | #line 5514 "configure" |
|---|
| 5516 | 5514 | #include "confdefs.h" |
|---|
| 5517 | 5515 | |
|---|
| … | … | |
| 5520 | 5518 | ; return 0; } |
|---|
| 5521 | 5519 | EOF |
|---|
| 5522 | | if { (eval echo configure:5523: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5520 | if { (eval echo configure:5521: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5523 | 5521 | rm -rf conftest* |
|---|
| 5524 | 5522 | ac_cv_c_altivec="-fvec" |
|---|
| … | … | |
| 5551 | 5549 | |
|---|
| 5552 | 5550 | echo $ac_n "checking if linker needs -framework vecLib""... $ac_c" 1>&6 |
|---|
| 5553 | | echo "configure:5554: checking if linker needs -framework vecLib" >&5 |
|---|
| | 5551 | echo "configure:5552: checking if linker needs -framework vecLib" >&5 |
|---|
| 5554 | 5552 | if eval "test \"`echo '$''{'ac_cv_ld_altivec'+set}'`\" = set"; then |
|---|
| 5555 | 5553 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 5558 | 5556 | LDFLAGS="$LDFLAGS -framework vecLib" |
|---|
| 5559 | 5557 | cat > conftest.$ac_ext <<EOF |
|---|
| 5560 | | #line 5561 "configure" |
|---|
| | 5558 | #line 5559 "configure" |
|---|
| 5561 | 5559 | #include "confdefs.h" |
|---|
| 5562 | 5560 | |
|---|
| … | … | |
| 5565 | 5563 | ; return 0; } |
|---|
| 5566 | 5564 | EOF |
|---|
| 5567 | | if { (eval echo configure:5568: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 5565 | if { (eval echo configure:5566: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 5568 | 5566 | rm -rf conftest* |
|---|
| 5569 | 5567 | ac_cv_ld_altivec=yes |
|---|
| … | … | |
| 5696 | 5694 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 5697 | 5695 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 5698 | | echo "configure:5699: checking for $ac_hdr" >&5 |
|---|
| | 5696 | echo "configure:5697: checking for $ac_hdr" >&5 |
|---|
| 5699 | 5697 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 5700 | 5698 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5701 | 5699 | else |
|---|
| 5702 | 5700 | cat > conftest.$ac_ext <<EOF |
|---|
| 5703 | | #line 5704 "configure" |
|---|
| | 5701 | #line 5702 "configure" |
|---|
| 5704 | 5702 | #include "confdefs.h" |
|---|
| 5705 | 5703 | #include <$ac_hdr> |
|---|
| 5706 | 5704 | EOF |
|---|
| 5707 | 5705 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 5708 | | { (eval echo configure:5709: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 5706 | { (eval echo configure:5707: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 5709 | 5707 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 5710 | 5708 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 5737 | 5735 | else |
|---|
| 5738 | 5736 | echo $ac_n "checking for libdvdcss.a in ${with_dvdcss_tree}""... $ac_c" 1>&6 |
|---|
| 5739 | | echo "configure:5740: checking for libdvdcss.a in ${with_dvdcss_tree}" >&5 |
|---|
| | 5737 | echo "configure:5738: checking for libdvdcss.a in ${with_dvdcss_tree}" >&5 |
|---|
| 5740 | 5738 | real_dvdcss_tree="`cd ${with_dvdcss_tree} 2>/dev/null && pwd`" |
|---|
| 5741 | 5739 | if test "x$real_dvdcss_tree" = x |
|---|
| … | … | |
| 5763 | 5761 | *) |
|---|
| 5764 | 5762 | echo $ac_n "checking for dvdcss headers in ${with_dvdcss}""... $ac_c" 1>&6 |
|---|
| 5765 | | echo "configure:5766: checking for dvdcss headers in ${with_dvdcss}" >&5 |
|---|
| | 5763 | echo "configure:5764: checking for dvdcss headers in ${with_dvdcss}" >&5 |
|---|
| 5766 | 5764 | if test -f ${with_dvdcss}/include/dvdcss/dvdcss.h |
|---|
| 5767 | 5765 | then |
|---|
| … | … | |
| 5798 | 5796 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 5799 | 5797 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 5800 | | echo "configure:5801: checking for $ac_hdr" >&5 |
|---|
| | 5798 | echo "configure:5799: checking for $ac_hdr" >&5 |
|---|
| 5801 | 5799 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 5802 | 5800 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5803 | 5801 | else |
|---|
| 5804 | 5802 | cat > conftest.$ac_ext <<EOF |
|---|
| 5805 | | #line 5806 "configure" |
|---|
| | 5803 | #line 5804 "configure" |
|---|
| 5806 | 5804 | #include "confdefs.h" |
|---|
| 5807 | 5805 | #include <$ac_hdr> |
|---|
| 5808 | 5806 | EOF |
|---|
| 5809 | 5807 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 5810 | | { (eval echo configure:5811: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 5808 | { (eval echo configure:5809: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 5811 | 5809 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 5812 | 5810 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 5838 | 5836 | *) |
|---|
| 5839 | 5837 | echo $ac_n "checking for dvdread headers in ${withval}""... $ac_c" 1>&6 |
|---|
| 5840 | | echo "configure:5841: checking for dvdread headers in ${withval}" >&5 |
|---|
| | 5838 | echo "configure:5839: checking for dvdread headers in ${withval}" >&5 |
|---|
| 5841 | 5839 | if test -f ${withval}/include/dvdread/dvd_reader.h |
|---|
| 5842 | 5840 | then |
|---|
| … | … | |
| 5863 | 5861 | then |
|---|
| 5864 | 5862 | cat > conftest.$ac_ext <<EOF |
|---|
| 5865 | | #line 5866 "configure" |
|---|
| | 5863 | #line 5864 "configure" |
|---|
| 5866 | 5864 | #include "confdefs.h" |
|---|
| 5867 | 5865 | #include <linux/cdrom.h> |
|---|
| … | … | |
| 5904 | 5902 | |
|---|
| 5905 | 5903 | echo $ac_n "checking for inet_pton""... $ac_c" 1>&6 |
|---|
| 5906 | | echo "configure:5907: checking for inet_pton" >&5 |
|---|
| | 5904 | echo "configure:5905: checking for inet_pton" >&5 |
|---|
| 5907 | 5905 | if eval "test \"`echo '$''{'ac_cv_func_inet_pton'+set}'`\" = set"; then |
|---|
| 5908 | 5906 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5909 | 5907 | else |
|---|
| 5910 | 5908 | cat > conftest.$ac_ext <<EOF |
|---|
| 5911 | | #line 5912 "configure" |
|---|
| | 5909 | #line 5910 "configure" |
|---|
| 5912 | 5910 | #include "confdefs.h" |
|---|
| 5913 | 5911 | /* System header to define __stub macros and hopefully few prototypes, |
|---|
| … | … | |
| 5932 | 5930 | ; return 0; } |
|---|
| 5933 | 5931 | EOF |
|---|
| 5934 | | if { (eval echo configure:5935: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 5932 | if { (eval echo configure:5933: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 5935 | 5933 | rm -rf conftest* |
|---|
| 5936 | 5934 | eval "ac_cv_func_inet_pton=yes" |
|---|
| … | … | |
| 5988 | 5986 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 5989 | 5987 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 5990 | | echo "configure:5991: checking for $ac_hdr" >&5 |
|---|
| | 5988 | echo "configure:5989: checking for $ac_hdr" >&5 |
|---|
| 5991 | 5989 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 5992 | 5990 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5993 | 5991 | else |
|---|
| 5994 | 5992 | cat > conftest.$ac_ext <<EOF |
|---|
| 5995 | | #line 5996 "configure" |
|---|
| | 5993 | #line 5994 "configure" |
|---|
| 5996 | 5994 | #include "confdefs.h" |
|---|
| 5997 | 5995 | #include <$ac_hdr> |
|---|
| 5998 | 5996 | EOF |
|---|
| 5999 | 5997 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6000 | | { (eval echo configure:6001: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 5998 | { (eval echo configure:5999: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6001 | 5999 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6002 | 6000 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6028 | 6026 | |
|---|
| 6029 | 6027 | echo $ac_n "checking for mad_bit_init in -lmad""... $ac_c" 1>&6 |
|---|
| 6030 | | echo "configure:6031: checking for mad_bit_init in -lmad" >&5 |
|---|
| | 6028 | echo "configure:6029: checking for mad_bit_init in -lmad" >&5 |
|---|
| 6031 | 6029 | ac_lib_var=`echo mad'_'mad_bit_init | sed 'y%./+-%__p_%'` |
|---|
| 6032 | 6030 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 6036 | 6034 | LIBS="-lmad $LIBS" |
|---|
| 6037 | 6035 | cat > conftest.$ac_ext <<EOF |
|---|
| 6038 | | #line 6039 "configure" |
|---|
| | 6036 | #line 6037 "configure" |
|---|
| 6039 | 6037 | #include "confdefs.h" |
|---|
| 6040 | 6038 | /* Override any gcc2 internal prototype to avoid an error. */ |
|---|
| … | … | |
| 6047 | 6045 | ; return 0; } |
|---|
| 6048 | 6046 | EOF |
|---|
| 6049 | | if { (eval echo configure:6050: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 6047 | if { (eval echo configure:6048: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 6050 | 6048 | rm -rf conftest* |
|---|
| 6051 | 6049 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 6099 | 6097 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6100 | 6098 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6101 | | echo "configure:6102: checking for $ac_hdr" >&5 |
|---|
| | 6099 | echo "configure:6100: checking for $ac_hdr" >&5 |
|---|
| 6102 | 6100 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6103 | 6101 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6104 | 6102 | else |
|---|
| 6105 | 6103 | cat > conftest.$ac_ext <<EOF |
|---|
| 6106 | | #line 6107 "configure" |
|---|
| | 6104 | #line 6105 "configure" |
|---|
| 6107 | 6105 | #include "confdefs.h" |
|---|
| 6108 | 6106 | #include <$ac_hdr> |
|---|
| 6109 | 6107 | EOF |
|---|
| 6110 | 6108 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6111 | | { (eval echo configure:6112: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6109 | { (eval echo configure:6110: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6112 | 6110 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6113 | 6111 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6152 | 6150 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6153 | 6151 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6154 | | echo "configure:6155: checking for $ac_hdr" >&5 |
|---|
| | 6152 | echo "configure:6153: checking for $ac_hdr" >&5 |
|---|
| 6155 | 6153 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6156 | 6154 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6157 | 6155 | else |
|---|
| 6158 | 6156 | cat > conftest.$ac_ext <<EOF |
|---|
| 6159 | | #line 6160 "configure" |
|---|
| | 6157 | #line 6158 "configure" |
|---|
| 6160 | 6158 | #include "confdefs.h" |
|---|
| 6161 | 6159 | #include <$ac_hdr> |
|---|
| 6162 | 6160 | EOF |
|---|
| 6163 | 6161 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6164 | | { (eval echo configure:6165: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6162 | { (eval echo configure:6163: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6165 | 6163 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6166 | 6164 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6221 | 6219 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6222 | 6220 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6223 | | echo "configure:6224: checking for $ac_hdr" >&5 |
|---|
| | 6221 | echo "configure:6222: checking for $ac_hdr" >&5 |
|---|
| 6224 | 6222 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6225 | 6223 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6226 | 6224 | else |
|---|
| 6227 | 6225 | cat > conftest.$ac_ext <<EOF |
|---|
| 6228 | | #line 6229 "configure" |
|---|
| | 6226 | #line 6227 "configure" |
|---|
| 6229 | 6227 | #include "confdefs.h" |
|---|
| 6230 | 6228 | #include <$ac_hdr> |
|---|
| 6231 | 6229 | EOF |
|---|
| 6232 | 6230 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6233 | | { (eval echo configure:6234: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6231 | { (eval echo configure:6232: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6234 | 6232 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6235 | 6233 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6284 | 6282 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6285 | 6283 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6286 | | echo "configure:6287: checking for $ac_hdr" >&5 |
|---|
| | 6284 | echo "configure:6285: checking for $ac_hdr" >&5 |
|---|
| 6287 | 6285 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6288 | 6286 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6289 | 6287 | else |
|---|
| 6290 | 6288 | cat > conftest.$ac_ext <<EOF |
|---|
| 6291 | | #line 6292 "configure" |
|---|
| | 6289 | #line 6290 "configure" |
|---|
| 6292 | 6290 | #include "confdefs.h" |
|---|
| 6293 | 6291 | #include <$ac_hdr> |
|---|
| 6294 | 6292 | EOF |
|---|
| 6295 | 6293 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6296 | | { (eval echo configure:6297: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6294 | { (eval echo configure:6295: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6297 | 6295 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6298 | 6296 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6318 | 6316 | CFLAGS="$CFLAGS -L$x_libraries -lX11 -lXext" |
|---|
| 6319 | 6317 | echo $ac_n "checking for XvSetPortAttribute in -lXv_pic""... $ac_c" 1>&6 |
|---|
| 6320 | | echo "configure:6321: checking for XvSetPortAttribute in -lXv_pic" >&5 |
|---|
| | 6318 | echo "configure:6319: checking for XvSetPortAttribute in -lXv_pic" >&5 |
|---|
| 6321 | 6319 | ac_lib_var=`echo Xv_pic'_'XvSetPortAttribute | sed 'y%./+-%__p_%'` |
|---|
| 6322 | 6320 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 6326 | 6324 | LIBS="-lXv_pic $LIBS" |
|---|
| 6327 | 6325 | cat > conftest.$ac_ext <<EOF |
|---|
| 6328 | | #line 6329 "configure" |
|---|
| | 6326 | #line 6327 "configure" |
|---|
| 6329 | 6327 | #include "confdefs.h" |
|---|
| 6330 | 6328 | /* Override any gcc2 internal prototype to avoid an error. */ |
|---|
| … | … | |
| 6337 | 6335 | ; return 0; } |
|---|
| 6338 | 6336 | EOF |
|---|
| 6339 | | if { (eval echo configure:6340: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 6337 | if { (eval echo configure:6338: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 6340 | 6338 | rm -rf conftest* |
|---|
| 6341 | 6339 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 6395 | 6393 | set dummy sdl12-config; ac_word=$2 |
|---|
| 6396 | 6394 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 6397 | | echo "configure:6398: checking for $ac_word" >&5 |
|---|
| | 6395 | echo "configure:6396: checking for $ac_word" >&5 |
|---|
| 6398 | 6396 | if eval "test \"`echo '$''{'ac_cv_path_SDL12_CONFIG'+set}'`\" = set"; then |
|---|
| 6399 | 6397 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 6435 | 6433 | set dummy sdl11-config; ac_word=$2 |
|---|
| 6436 | 6434 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 6437 | | echo "configure:6438: checking for $ac_word" >&5 |
|---|
| | 6435 | echo "configure:6436: checking for $ac_word" >&5 |
|---|
| 6438 | 6436 | if eval "test \"`echo '$''{'ac_cv_path_SDL11_CONFIG'+set}'`\" = set"; then |
|---|
| 6439 | 6437 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 6476 | 6474 | set dummy sdl-config; ac_word=$2 |
|---|
| 6477 | 6475 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 6478 | | echo "configure:6479: checking for $ac_word" >&5 |
|---|
| | 6476 | echo "configure:6477: checking for $ac_word" >&5 |
|---|
| 6479 | 6477 | if eval "test \"`echo '$''{'ac_cv_path_SDL_CONFIG'+set}'`\" = set"; then |
|---|
| 6480 | 6478 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 6522 | 6520 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6523 | 6521 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6524 | | echo "configure:6525: checking for $ac_hdr" >&5 |
|---|
| | 6522 | echo "configure:6523: checking for $ac_hdr" >&5 |
|---|
| 6525 | 6523 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6526 | 6524 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6527 | 6525 | else |
|---|
| 6528 | 6526 | cat > conftest.$ac_ext <<EOF |
|---|
| 6529 | | #line 6530 "configure" |
|---|
| | 6527 | #line 6528 "configure" |
|---|
| 6530 | 6528 | #include "confdefs.h" |
|---|
| 6531 | 6529 | #include <$ac_hdr> |
|---|
| 6532 | 6530 | EOF |
|---|
| 6533 | 6531 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6534 | | { (eval echo configure:6535: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6532 | { (eval echo configure:6533: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6535 | 6533 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6536 | 6534 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6602 | 6600 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6603 | 6601 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6604 | | echo "configure:6605: checking for $ac_hdr" >&5 |
|---|
| | 6602 | echo "configure:6603: checking for $ac_hdr" >&5 |
|---|
| 6605 | 6603 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6606 | 6604 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6607 | 6605 | else |
|---|
| 6608 | 6606 | cat > conftest.$ac_ext <<EOF |
|---|
| 6609 | | #line 6610 "configure" |
|---|
| | 6607 | #line 6608 "configure" |
|---|
| 6610 | 6608 | #include "confdefs.h" |
|---|
| 6611 | 6609 | #include <$ac_hdr> |
|---|
| 6612 | 6610 | EOF |
|---|
| 6613 | 6611 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6614 | | { (eval echo configure:6615: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6612 | { (eval echo configure:6613: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6615 | 6613 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6616 | 6614 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6641 | 6639 | else |
|---|
| 6642 | 6640 | echo $ac_n "checking for directX headers in ${withval}""... $ac_c" 1>&6 |
|---|
| 6643 | | echo "configure:6644: checking for directX headers in ${withval}" >&5 |
|---|
| | 6641 | echo "configure:6642: checking for directX headers in ${withval}" >&5 |
|---|
| 6644 | 6642 | if test -f ${withval}/ddraw.h |
|---|
| 6645 | 6643 | then |
|---|
| … | … | |
| 6668 | 6666 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6669 | 6667 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6670 | | echo "configure:6671: checking for $ac_hdr" >&5 |
|---|
| | 6668 | echo "configure:6669: checking for $ac_hdr" >&5 |
|---|
| 6671 | 6669 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6672 | 6670 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6673 | 6671 | else |
|---|
| 6674 | 6672 | cat > conftest.$ac_ext <<EOF |
|---|
| 6675 | | #line 6676 "configure" |
|---|
| | 6673 | #line 6674 "configure" |
|---|
| 6676 | 6674 | #include "confdefs.h" |
|---|
| 6677 | 6675 | #include <$ac_hdr> |
|---|
| 6678 | 6676 | EOF |
|---|
| 6679 | 6677 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6680 | | { (eval echo configure:6681: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6678 | { (eval echo configure:6679: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6681 | 6679 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6682 | 6680 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6773 | 6771 | ac_safe=`echo "aalib.h" | sed 'y%./+-%__p_%'` |
|---|
| 6774 | 6772 | echo $ac_n "checking for aalib.h""... $ac_c" 1>&6 |
|---|
| 6775 | | echo "configure:6776: checking for aalib.h" >&5 |
|---|
| | 6773 | echo "configure:6774: checking for aalib.h" >&5 |
|---|
| 6776 | 6774 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6777 | 6775 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6778 | 6776 | else |
|---|
| 6779 | 6777 | cat > conftest.$ac_ext <<EOF |
|---|
| 6780 | | #line 6781 "configure" |
|---|
| | 6778 | #line 6779 "configure" |
|---|
| 6781 | 6779 | #include "confdefs.h" |
|---|
| 6782 | 6780 | #include <aalib.h> |
|---|
| 6783 | 6781 | EOF |
|---|
| 6784 | 6782 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6785 | | { (eval echo configure:6786: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6783 | { (eval echo configure:6784: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6786 | 6784 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6787 | 6785 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6834 | 6832 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6835 | 6833 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6836 | | echo "configure:6837: checking for $ac_hdr" >&5 |
|---|
| | 6834 | echo "configure:6835: checking for $ac_hdr" >&5 |
|---|
| 6837 | 6835 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6838 | 6836 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6839 | 6837 | else |
|---|
| 6840 | 6838 | cat > conftest.$ac_ext <<EOF |
|---|
| 6841 | | #line 6842 "configure" |
|---|
| | 6839 | #line 6840 "configure" |
|---|
| 6842 | 6840 | #include "confdefs.h" |
|---|
| 6843 | 6841 | #include <$ac_hdr> |
|---|
| 6844 | 6842 | EOF |
|---|
| 6845 | 6843 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6846 | | { (eval echo configure:6847: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6844 | { (eval echo configure:6845: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6847 | 6845 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6848 | 6846 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6867 | 6865 | PLUGINS="${PLUGINS} dsp" |
|---|
| 6868 | 6866 | echo $ac_n "checking for main in -lossaudio""... $ac_c" 1>&6 |
|---|
| 6869 | | echo "configure:6870: checking for main in -lossaudio" >&5 |
|---|
| | 6867 | echo "configure:6868: checking for main in -lossaudio" >&5 |
|---|
| 6870 | 6868 | ac_lib_var=`echo ossaudio'_'main | sed 'y%./+-%__p_%'` |
|---|
| 6871 | 6869 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 6875 | 6873 | LIBS="-lossaudio $LIBS" |
|---|
| 6876 | 6874 | cat > conftest.$ac_ext <<EOF |
|---|
| 6877 | | #line 6878 "configure" |
|---|
| | 6875 | #line 6876 "configure" |
|---|
| 6878 | 6876 | #include "confdefs.h" |
|---|
| 6879 | 6877 | |
|---|
| … | … | |
| 6882 | 6880 | ; return 0; } |
|---|
| 6883 | 6881 | EOF |
|---|
| 6884 | | if { (eval echo configure:6885: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 6882 | if { (eval echo configure:6883: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 6885 | 6883 | rm -rf conftest* |
|---|
| 6886 | 6884 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 6918 | 6916 | set dummy esd-config; ac_word=$2 |
|---|
| 6919 | 6917 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 6920 | | echo "configure:6921: checking for $ac_word" >&5 |
|---|
| | 6918 | echo "configure:6919: checking for $ac_word" >&5 |
|---|
| 6921 | 6919 | if eval "test \"`echo '$''{'ac_cv_path_ESD_CONFIG'+set}'`\" = set"; then |
|---|
| 6922 | 6920 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 6969 | 6967 | set dummy artsc-config; ac_word=$2 |
|---|
| 6970 | 6968 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 6971 | | echo "configure:6972: checking for $ac_word" >&5 |
|---|
| | 6969 | echo "configure:6970: checking for $ac_word" >&5 |
|---|
| 6972 | 6970 | if eval "test \"`echo '$''{'ac_cv_path_ARTS_CONFIG'+set}'`\" = set"; then |
|---|
| 6973 | 6971 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 7019 | 7017 | ac_safe=`echo "alsa/asoundlib.h" | sed 'y%./+-%__p_%'` |
|---|
| 7020 | 7018 | echo $ac_n "checking for alsa/asoundlib.h""... $ac_c" 1>&6 |
|---|
| 7021 | | echo "configure:7022: checking for alsa/asoundlib.h" >&5 |
|---|
| | 7019 | echo "configure:7020: checking for alsa/asoundlib.h" >&5 |
|---|
| 7022 | 7020 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7023 | 7021 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7024 | 7022 | else |
|---|
| 7025 | 7023 | cat > conftest.$ac_ext <<EOF |
|---|
| 7026 | | #line 7027 "configure" |
|---|
| | 7024 | #line 7025 "configure" |
|---|
| 7027 | 7025 | #include "confdefs.h" |
|---|
| 7028 | 7026 | #include <alsa/asoundlib.h> |
|---|
| 7029 | 7027 | EOF |
|---|
| 7030 | 7028 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7031 | | { (eval echo configure:7032: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7029 | { (eval echo configure:7030: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7032 | 7030 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7033 | 7031 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7046 | 7044 | echo "$ac_t""yes" 1>&6 |
|---|
| 7047 | 7045 | echo $ac_n "checking for main in -lasound""... $ac_c" 1>&6 |
|---|
| 7048 | | echo "configure:7049: checking for main in -lasound" >&5 |
|---|
| | 7046 | echo "configure:7047: checking for main in -lasound" >&5 |
|---|
| 7049 | 7047 | ac_lib_var=`echo asound'_'main | sed 'y%./+-%__p_%'` |
|---|
| 7050 | 7048 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 7054 | 7052 | LIBS="-lasound $LIBS" |
|---|
| 7055 | 7053 | cat > conftest.$ac_ext <<EOF |
|---|
| 7056 | | #line 7057 "configure" |
|---|
| | 7054 | #line 7055 "configure" |
|---|
| 7057 | 7055 | #include "confdefs.h" |
|---|
| 7058 | 7056 | |
|---|
| … | … | |
| 7061 | 7059 | ; return 0; } |
|---|
| 7062 | 7060 | EOF |
|---|
| 7063 | | if { (eval echo configure:7064: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 7061 | if { (eval echo configure:7062: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 7064 | 7062 | rm -rf conftest* |
|---|
| 7065 | 7063 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 7138 | 7136 | set dummy gtk12-config; ac_word=$2 |
|---|
| 7139 | 7137 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 7140 | | echo "configure:7141: checking for $ac_word" >&5 |
|---|
| | 7138 | echo "configure:7139: checking for $ac_word" >&5 |
|---|
| 7141 | 7139 | if eval "test \"`echo '$''{'ac_cv_path_GTK12_CONFIG'+set}'`\" = set"; then |
|---|
| 7142 | 7140 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 7177 | 7175 | set dummy gtk-config; ac_word=$2 |
|---|
| 7178 | 7176 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 7179 | | echo "configure:7180: checking for $ac_word" >&5 |
|---|
| | 7177 | echo "configure:7178: checking for $ac_word" >&5 |
|---|
| 7180 | 7178 | if eval "test \"`echo '$''{'ac_cv_path_GTK_CONFIG'+set}'`\" = set"; then |
|---|
| 7181 | 7179 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 7227 | 7225 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 7228 | 7226 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 7229 | | echo "configure:7230: checking for $ac_hdr" >&5 |
|---|
| | 7227 | echo "configure:7228: checking for $ac_hdr" >&5 |
|---|
| 7230 | 7228 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7231 | 7229 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7232 | 7230 | else |
|---|
| 7233 | 7231 | cat > conftest.$ac_ext <<EOF |
|---|
| 7234 | | #line 7235 "configure" |
|---|
| | 7232 | #line 7233 "configure" |
|---|
| 7235 | 7233 | #include "confdefs.h" |
|---|
| 7236 | 7234 | #include <$ac_hdr> |
|---|
| 7237 | 7235 | EOF |
|---|
| 7238 | 7236 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7239 | | { (eval echo configure:7240: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7237 | { (eval echo configure:7238: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7240 | 7238 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7241 | 7239 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7283 | 7281 | set dummy gnome-config; ac_word=$2 |
|---|
| 7284 | 7282 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 7285 | | echo "configure:7286: checking for $ac_word" >&5 |
|---|
| | 7283 | echo "configure:7284: checking for $ac_word" >&5 |
|---|
| 7286 | 7284 | if eval "test \"`echo '$''{'ac_cv_path_GNOME_CONFIG'+set}'`\" = set"; then |
|---|
| 7287 | 7285 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 7328 | 7326 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 7329 | 7327 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 7330 | | echo "configure:7331: checking for $ac_hdr" >&5 |
|---|
| | 7328 | echo "configure:7329: checking for $ac_hdr" >&5 |
|---|
| 7331 | 7329 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7332 | 7330 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7333 | 7331 | else |
|---|
| 7334 | 7332 | cat > conftest.$ac_ext <<EOF |
|---|
| 7335 | | #line 7336 "configure" |
|---|
| | 7333 | #line 7334 "configure" |
|---|
| 7336 | 7334 | #include "confdefs.h" |
|---|
| 7337 | 7335 | #include <$ac_hdr> |
|---|
| 7338 | 7336 | EOF |
|---|
| 7339 | 7337 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7340 | | { (eval echo configure:7341: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7338 | { (eval echo configure:7339: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7341 | 7339 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7342 | 7340 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7428 | 7426 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 7429 | 7427 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 7430 | | echo "configure:7431: checking for $ac_hdr" >&5 |
|---|
| | 7428 | echo "configure:7429: checking for $ac_hdr" >&5 |
|---|
| 7431 | 7429 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7432 | 7430 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7433 | 7431 | else |
|---|
| 7434 | 7432 | cat > conftest.$ac_ext <<EOF |
|---|
| 7435 | | #line 7436 "configure" |
|---|
| | 7433 | #line 7434 "configure" |
|---|
| 7436 | 7434 | #include "confdefs.h" |
|---|
| 7437 | 7435 | #include <$ac_hdr> |
|---|
| 7438 | 7436 | EOF |
|---|
| 7439 | 7437 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7440 | | { (eval echo configure:7441: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7438 | { (eval echo configure:7439: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7441 | 7439 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7442 | 7440 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7483 | 7481 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 7484 | 7482 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 7485 | | echo "configure:7486: checking for $ac_hdr" >&5 |
|---|
| | 7483 | echo "configure:7484: checking for $ac_hdr" >&5 |
|---|
| 7486 | 7484 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7487 | 7485 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7488 | 7486 | else |
|---|
| 7489 | 7487 | cat > conftest.$ac_ext <<EOF |
|---|
| 7490 | | #line 7491 "configure" |
|---|
| | 7488 | #line 7489 "configure" |
|---|
| 7491 | 7489 | #include "confdefs.h" |
|---|
| 7492 | 7490 | #include <$ac_hdr> |
|---|
| 7493 | 7491 | EOF |
|---|
| 7494 | 7492 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7495 | | { (eval echo configure:7496: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7493 | { (eval echo configure:7494: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7496 | 7494 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7497 | 7495 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7554 | 7552 | ac_safe=`echo "lirc/lirc_client.h" | sed 'y%./+-%__p_%'` |
|---|
| 7555 | 7553 | echo $ac_n "checking for lirc/lirc_client.h""... $ac_c" 1>&6 |
|---|
| 7556 | | echo "configure:7557: checking for lirc/lirc_client.h" >&5 |
|---|
| | 7554 | echo "configure:7555: checking for lirc/lirc_client.h" >&5 |
|---|
| 7557 | 7555 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7558 | 7556 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7559 | 7557 | else |
|---|
| 7560 | 7558 | cat > conftest.$ac_ext <<EOF |
|---|
| 7561 | | #line 7562 "configure" |
|---|
| | 7559 | #line 7560 "configure" |
|---|
| 7562 | 7560 | #include "confdefs.h" |
|---|
| 7563 | 7561 | #include <lirc/lirc_client.h> |
|---|
| 7564 | 7562 | EOF |
|---|
| 7565 | 7563 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7566 | | { (eval echo configure:7567: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7564 | { (eval echo configure:7565: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7567 | 7565 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7568 | 7566 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7581 | 7579 | echo "$ac_t""yes" 1>&6 |
|---|
| 7582 | 7580 | echo $ac_n "checking for lirc_init in -llirc_client""... $ac_c" 1>&6 |
|---|
| 7583 | | echo "configure:7584: checking for lirc_init in -llirc_client" >&5 |
|---|
| | 7581 | echo "configure:7582: checking for lirc_init in -llirc_client" >&5 |
|---|
| 7584 | 7582 | ac_lib_var=`echo lirc_client'_'lirc_init | sed 'y%./+-%__p_%'` |
|---|
| 7585 | 7583 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 7589 | 7587 | LIBS="-llirc_client $LIBS" |
|---|
| 7590 | 7588 | cat > conftest.$ac_ext <<EOF |
|---|
| 7591 | | #line 7592 "configure" |
|---|
| | 7589 | #line 7590 "configure" |
|---|
| 7592 | 7590 | #include "confdefs.h" |
|---|
| 7593 | 7591 | /* Override any gcc2 internal prototype to avoid an error. */ |
|---|
| … | … | |
| 7600 | 7598 | ; return 0; } |
|---|
| 7601 | 7599 | EOF |
|---|
| 7602 | | if { (eval echo configure:7603: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 7600 | if { (eval echo configure:7601: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 7603 | 7601 | rm -rf conftest* |
|---|
| 7604 | 7602 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 7657 | 7655 | *) |
|---|
| 7658 | 7656 | echo $ac_n "checking whether the byte order is big-endian""... $ac_c" 1>&6 |
|---|
| 7659 | | echo "configure:7660: checking whether the byte order is big-endian" >&5 |
|---|
| | 7657 | echo "configure:7658: checking whether the byte order is big-endian" >&5 |
|---|
| 7660 | 7658 | if eval "test \"`echo '$''{'ac_cv_c_bigendian'+set}'`\" = set"; then |
|---|
| 7661 | 7659 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 7742 | 7740 | if test x$enableval = xyes; then |
|---|
| 7743 | 7741 | echo $ac_n "checking for pth_init in -lpth""... $ac_c" 1>&6 |
|---|
| 7744 | | echo "configure:7745: checking for pth_init in -lpth" >&5 |
|---|
| | 7742 | echo "configure:7743: checking for pth_init in -lpth" >&5 |
|---|
| 7745 | 7743 | ac_lib_var=`echo pth'_'pth_init | sed 'y%./+-%__p_%'` |
|---|
| 7746 | 7744 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 7750 | 7748 | LIBS="-lpth $LIBS" |
|---|
| 7751 | 7749 | cat > conftest.$ac_ext <<EOF |
|---|
| 7752 | | #line 7753 "configure" |
|---|
| | 7750 | #line 7751 "configure" |
|---|
| 7753 | 7751 | #include "confdefs.h" |
|---|
| 7754 | 7752 | /* Override any gcc2 internal prototype to avoid an error. */ |
|---|
| … | … | |
| 7761 | 7759 | ; return 0; } |
|---|
| 7762 | 7760 | EOF |
|---|
| 7763 | | if { (eval echo configure:7764: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 7761 | if { (eval echo configure:7762: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 7764 | 7762 | rm -rf conftest* |
|---|
| 7765 | 7763 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 7789 | 7787 | |
|---|
| 7790 | 7788 | cat > conftest.$ac_ext <<EOF |
|---|
| 7791 | | #line 7792 "configure" |
|---|
| | 7789 | #line 7790 "configure" |
|---|
| 7792 | 7790 | #include "confdefs.h" |
|---|
| 7793 | 7791 | #include <pth.h> |
|---|
| … | … | |
| 7815 | 7813 | if test x$enableval = xyes; then |
|---|
| 7816 | 7814 | echo $ac_n "checking for st_init in -lst""... $ac_c" 1>&6 |
|---|
| 7817 | | echo "configure:7818: checking for st_init in -lst" >&5 |
|---|
| | 7815 | echo "configure:7816: checking for st_init in -lst" >&5 |
|---|
| 7818 | 7816 | ac_lib_var=`echo st'_'st_init | sed 'y%./+-%__p_%'` |
|---|
| 7819 | 7817 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 7823 | 7821 | LIBS="-lst $LIBS" |
|---|
| 7824 | 7822 | cat > conftest.$ac_ext <<EOF |
|---|
| 7825 | | #line 7826 "configure" |
|---|
| | 7823 | #line 7824 "configure" |
|---|
| 7826 | 7824 | #include "confdefs.h" |
|---|
| 7827 | 7825 | /* Override any gcc2 internal prototype to avoid an error. */ |
|---|
| … | … | |
| 7834 | 7832 | ; return 0; } |
|---|
| 7835 | 7833 | EOF |
|---|
| 7836 | | if { (eval echo configure:7837: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 7834 | if { (eval echo configure:7835: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 7837 | 7835 | rm -rf conftest* |
|---|
| 7838 | 7836 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 7862 | 7860 | |
|---|
| 7863 | 7861 | cat > conftest.$ac_ext <<EOF |
|---|
| 7864 | | #line 7865 "configure" |
|---|
| | 7862 | #line 7863 "configure" |
|---|
| 7865 | 7863 | #include "confdefs.h" |
|---|
| 7866 | 7864 | #include <st.h> |
|---|
| ra33d6ac |
rcf5b383 |
|
| 89 | 89 | |
|---|
| 90 | 90 | dnl Check for system libs needed |
|---|
| 91 | | AC_CHECK_FUNCS(gettimeofday select strerror strtod strtol isatty usleep vasprintf swab sigrelse getpwuid memalign valloc) |
|---|
| | 91 | AC_CHECK_FUNCS(gettimeofday select strerror strtod strtol isatty usleep vasprintf swab sigrelse getpwuid memalign posix_memalign) |
|---|
| 92 | 92 | |
|---|
| 93 | 93 | AC_CHECK_FUNC(connect,,[ |
|---|
| … | … | |
| 378 | 378 | MMXEXT_MODULES="memcpymmxext idctmmxext motionmmxext" |
|---|
| 379 | 379 | THREEDNOW_MODULES="memcpy3dn imdct3dn downmix3dn" |
|---|
| 380 | | if test x$SYS != xmingw32; then |
|---|
| 381 | | SSE_MODULES="imdctsse downmixsse" |
|---|
| 382 | | fi |
|---|
| | 380 | SSE_MODULES="imdctsse downmixsse" |
|---|
| 383 | 381 | ALTIVEC_MODULES="idctaltivec motionaltivec" |
|---|
| 384 | 382 | |
|---|
| re5b4af9 |
rcf5b383 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 1999, 2000 VideoLAN |
|---|
| 5 | | * $Id: ac3_imdct.h,v 1.6 2001/10/30 19:34:53 reno Exp $ |
|---|
| | 5 | * $Id: ac3_imdct.h,v 1.7 2002/04/05 01:05:22 gbazin Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Michel Kaempf <maxx@via.ecp.fr> |
|---|
| … | … | |
| 33 | 33 | { |
|---|
| 34 | 34 | complex_t * buf; |
|---|
| | 35 | void * buf_orig; /* pointer before memalign */ |
|---|
| 35 | 36 | |
|---|
| 36 | 37 | /* Delay buffer for time domain interleaving */ |
|---|
| 37 | 38 | float * delay; |
|---|
| | 39 | void * delay_orig; /* pointer before memalign */ |
|---|
| 38 | 40 | float * delay1; |
|---|
| | 41 | void * delay1_orig; /* pointer before memalign */ |
|---|
| 39 | 42 | |
|---|
| 40 | 43 | /* Twiddle factors for IMDCT */ |
|---|
| 41 | 44 | float * xcos1; |
|---|
| | 45 | void * xcos1_orig; /* pointer before memalign */ |
|---|
| 42 | 46 | float * xsin1; |
|---|
| | 47 | void * xsin1_orig; /* pointer before memalign */ |
|---|
| 43 | 48 | float * xcos2; |
|---|
| | 49 | void * xcos2_orig; /* pointer before memalign */ |
|---|
| 44 | 50 | float * xsin2; |
|---|
| | 51 | void * xsin2_orig; /* pointer before memalign */ |
|---|
| 45 | 52 | float * xcos_sin_sse; |
|---|
| | 53 | void * xcos_sin_sse_orig; /* pointer before memalign */ |
|---|
| 46 | 54 | |
|---|
| 47 | 55 | /* Twiddle factor LUT */ |
|---|
| 48 | 56 | complex_t * w_2; |
|---|
| | 57 | void * w_2_orig; /* pointer before memalign */ |
|---|
| 49 | 58 | complex_t * w_4; |
|---|
| | 59 | void * w_4_orig; /* pointer before memalign */ |
|---|
| 50 | 60 | complex_t * w_8; |
|---|
| | 61 | void * w_8_orig; /* pointer before memalign */ |
|---|
| 51 | 62 | complex_t * w_16; |
|---|
| | 63 | void * w_16_orig; /* pointer before memalign */ |
|---|
| 52 | 64 | complex_t * w_32; |
|---|
| | 65 | void * w_32_orig; /* pointer before memalign */ |
|---|
| 53 | 66 | complex_t * w_64; |
|---|
| | 67 | void * w_64_orig; /* pointer before memalign */ |
|---|
| 54 | 68 | complex_t * w_1; |
|---|
| | 69 | void * w_1_orig; /* pointer before memalign */ |
|---|
| 55 | 70 | |
|---|
| 56 | 71 | /* Module used and shortcuts */ |
|---|