You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2009/12/18 00:29:54 UTC

svn commit: r891991 - /apr/apr/trunk/build/apr_common.m4

Author: wrowe
Date: Thu Dec 17 23:29:53 2009
New Revision: 891991

URL: http://svn.apache.org/viewvc?rev=891991&view=rev
Log:
This newline breaks feature detection on mingw xcompile, shouldn't be needed

Modified:
    apr/apr/trunk/build/apr_common.m4

Modified: apr/apr/trunk/build/apr_common.m4
URL: http://svn.apache.org/viewvc/apr/apr/trunk/build/apr_common.m4?rev=891991&r1=891990&r2=891991&view=diff
==============================================================================
--- apr/apr/trunk/build/apr_common.m4 (original)
+++ apr/apr/trunk/build/apr_common.m4 Thu Dec 17 23:29:53 2009
@@ -468,7 +468,7 @@
 {
   FILE *f=fopen("conftestval", "w");
   if (!f) exit(1);
-  fprintf(f, "%d\n", sizeof($2));
+  fprintf(f, "%d", sizeof($2));
   exit(0);
 }], AC_CV_NAME=`cat conftestval`, AC_CV_NAME=0, ifelse([$3],,,
 AC_CV_NAME=$3))])dnl