# HG changeset patch # User diego # Date 1284484134 0 # Node ID 51622e94f85aa53c094a8b43a7d94bf3a4010d43 # Parent 0fb9d0e105a865e5646d0cd6ed503cf2269ec592 cosmetics: Replace some double quotes by single quotes for consistency. diff -r 0fb9d0e105a8 -r 51622e94f85a configure --- a/configure Tue Sep 14 17:04:06 2010 +0000 +++ b/configure Tue Sep 14 17:08:54 2010 +0000 @@ -3496,7 +3496,7 @@ echocheck "mman.h" _mman=no -function_check sys/mman.h "mmap(0, 0, 0, 0, 0, 0)" && _mman=yes +function_check sys/mman.h 'mmap(0, 0, 0, 0, 0, 0)' && _mman=yes if test "$_mman" = yes ; then def_mman_h='#define HAVE_SYS_MMAN_H 1' else @@ -4263,7 +4263,7 @@ if test "$_directfb" = auto ; then _directfb=no for _inc_tmp in "" -I/usr/local/include/directfb -I/usr/include/directfb -I/usr/local/include; do - function_check directfb.h "DirectFBInit(0, 0)" $_inc_tmp -ldirectfb && + function_check directfb.h 'DirectFBInit(0, 0)' $_inc_tmp -ldirectfb && _directfb=yes && extra_cflags="$extra_cflags $_inc_tmp" && break done fi @@ -5580,7 +5580,7 @@ if test "$_arts" = auto ; then _arts=no if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then - function_check artsc.h "arts_init()" $(artsc-config --libs) $(artsc-config --cflags) && + function_check artsc.h 'arts_init()' $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes fi fi @@ -7215,7 +7215,7 @@ echocheck "libdv-0.9.5+" if test "$_libdv" = auto ; then _libdv=no - function_check libdv/dv.h "dv_encoder_new(1, 1, 1)" -ldv $_ld_pthread $_ld_lm && _libdv=yes + function_check libdv/dv.h 'dv_encoder_new(1, 1, 1)' -ldv $_ld_pthread $_ld_lm && _libdv=yes fi if test "$_libdv" = yes ; then def_libdv='#define CONFIG_LIBDV095 1'