You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/04/09 17:44:09 UTC

svn commit: r763705 - /commons/sandbox/runtime/trunk/src/main/native/configure

Author: mturk
Date: Thu Apr  9 15:44:09 2009
New Revision: 763705

URL: http://svn.apache.org/viewvc?rev=763705&view=rev
Log:
Verbose configure

Modified:
    commons/sandbox/runtime/trunk/src/main/native/configure

Modified: commons/sandbox/runtime/trunk/src/main/native/configure
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/configure?rev=763705&r1=763704&r2=763705&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/configure (original)
+++ commons/sandbox/runtime/trunk/src/main/native/configure Thu Apr  9 15:44:09 2009
@@ -366,6 +366,7 @@
 
 have_include()
 {
+    echo "Checking for <$1.h>" 1>&2
     cat > $test.c << EOF
 #include <stdlib.h>
 #include <$1.h>
@@ -386,6 +387,7 @@
 
 test_csizeof()
 {
+    echo "Checking for sizeof \`$1'" 1>&2
     cat > $test.c << EOF
 #include <stdio.h>
 #include <stdlib.h>
@@ -474,4 +476,5 @@
     -e "s;=@name@;=$name;g" \
     Makefile$nmake.in > Makefile$nmake
 
+echo ""
 echo "Configured for $host$bits-$cc."