summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2009-02-17 10:27:47 +0000
committerphintuka <phintuka>2009-02-17 10:27:47 +0000
commit4a2f12cfe11bff6dc5cd6802c6e93bac86ae956a (patch)
treeb3bd07aa09e6d5968afd7aa1deb2d3eed7f9958a
parent2bf2e50d8d0e715af4f4880795ab9739508c88c5 (diff)
downloadxineliboutput-4a2f12cfe11bff6dc5cd6802c6e93bac86ae956a.tar.gz
xineliboutput-4a2f12cfe11bff6dc5cd6802c6e93bac86ae956a.tar.bz2
Added missing "
Log gcc output
-rwxr-xr-xconfigure12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index 61e62501..0c83689e 100755
--- a/configure
+++ b/configure
@@ -7,7 +7,7 @@
# See the main source file 'xineliboutput.c' for copyright information and
# how to reach the author.
#
-# * $Id: configure,v 1.14 2009-02-17 10:25:01 phintuka Exp $
+# * $Id: configure,v 1.15 2009-02-17 10:27:47 phintuka Exp $
#
PKG_CONFIG="pkg-config"
@@ -104,9 +104,9 @@ disabled(){
#
generate_test_c(){
- hdrname=$1
- subsys=$2
- func=$3
+ hdrname="$1"
+ subsys="$2"
+ func="$3"
if test x"$subsys" = xX11 ; then
cat <<EOF >testhdr.c
#include <X11/Xlib.h>
@@ -130,8 +130,8 @@ EOF
test_library_c(){
log -n "Checking for $libname ... "
- generate_test_c $hdr $subsys $func
- $CC -g testhdr.c -o testhdr $CFLAGS $lib > /dev/null 2>&1
+ generate_test_c "$hdr" "$subsys" "$func"
+ $CC -g testhdr.c -o testhdr $CFLAGS $lib >> $logfile 2>&1
err=$?
if test $err = 0; then