summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-09-14 17:08:54 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:16:55 +0200
commit7c5e3a19331b004883848a4efc9263c68cc3f4da (patch)
treeb59ca8d7ddd820db44b1328395e70258b3a59836
parentd114f96b2e572a16d6e5685d53246790bf2ac84e (diff)
downloadmpv-7c5e3a19331b004883848a4efc9263c68cc3f4da.tar.bz2
mpv-7c5e3a19331b004883848a4efc9263c68cc3f4da.tar.xz
configure: cosmetics: Replace some double quotes by single quotes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32247 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index ca779f3701..0fc4f3ce45 100755
--- a/configure
+++ b/configure
@@ -3237,7 +3237,7 @@ echores "$_fastmemcpy"
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
@@ -3975,7 +3975,7 @@ echocheck "DirectFB"
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
@@ -5275,7 +5275,7 @@ echocheck "aRts"
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
@@ -6744,7 +6744,7 @@ fi
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'