comparison configure @ 32163:51622e94f85a

cosmetics: Replace some double quotes by single quotes for consistency.
author diego
date Tue, 14 Sep 2010 17:08:54 +0000
parents 0fb9d0e105a8
children 07c3c20985e0
comparison
equal deleted inserted replaced
32162:0fb9d0e105a8 32163:51622e94f85a
3494 echores "$hardcoded_tables" 3494 echores "$hardcoded_tables"
3495 3495
3496 3496
3497 echocheck "mman.h" 3497 echocheck "mman.h"
3498 _mman=no 3498 _mman=no
3499 function_check sys/mman.h "mmap(0, 0, 0, 0, 0, 0)" && _mman=yes 3499 function_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes
3500 if test "$_mman" = yes ; then 3500 if test "$_mman" = yes ; then
3501 def_mman_h='#define HAVE_SYS_MMAN_H 1' 3501 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3502 else 3502 else
3503 def_mman_h='#undef HAVE_SYS_MMAN_H' 3503 def_mman_h='#undef HAVE_SYS_MMAN_H'
3504 os2 && _need_mmap=yes 3504 os2 && _need_mmap=yes
4261 4261
4262 echocheck "DirectFB" 4262 echocheck "DirectFB"
4263 if test "$_directfb" = auto ; then 4263 if test "$_directfb" = auto ; then
4264 _directfb=no 4264 _directfb=no
4265 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do 4265 for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do
4266 function_check directfb.h "DirectFBInit(0, 0)" $_inc_tmp -ldirectfb && 4266 function_check directfb.h 'DirectFBInit(0, 0)' $_inc_tmp -ldirectfb &&
4267 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break 4267 _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
4268 done 4268 done
4269 fi 4269 fi
4270 4270
4271 dfb_version() { 4271 dfb_version() {
5578 5578
5579 echocheck "aRts" 5579 echocheck "aRts"
5580 if test "$_arts" = auto ; then 5580 if test "$_arts" = auto ; then
5581 _arts=no 5581 _arts=no
5582 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then 5582 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5583 function_check artsc.h "arts_init()" $(artsc-config --libs) $(artsc-config --cflags) && 5583 function_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) &&
5584 _arts=yes 5584 _arts=yes
5585 fi 5585 fi
5586 fi 5586 fi
5587 5587
5588 if test "$_arts" = yes ; then 5588 if test "$_arts" = yes ; then
7213 echores "$_libopencore_amrwb" 7213 echores "$_libopencore_amrwb"
7214 7214
7215 echocheck "libdv-0.9.5+" 7215 echocheck "libdv-0.9.5+"
7216 if test "$_libdv" = auto ; then 7216 if test "$_libdv" = auto ; then
7217 _libdv=no 7217 _libdv=no
7218 function_check libdv/dv.h "dv_encoder_new(1, 1, 1)" -ldv $_ld_pthread $_ld_lm && _libdv=yes 7218 function_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes
7219 fi 7219 fi
7220 if test "$_libdv" = yes ; then 7220 if test "$_libdv" = yes ; then
7221 def_libdv='#define CONFIG_LIBDV095 1' 7221 def_libdv='#define CONFIG_LIBDV095 1'
7222 extra_ldflags="$extra_ldflags -ldv" 7222 extra_ldflags="$extra_ldflags -ldv"
7223 codecmodules="libdv $codecmodules" 7223 codecmodules="libdv $codecmodules"