[netperf-dev] netperf2 commit notice r125 - trunk

raj at netperf.org raj at netperf.org
Tue Jun 5 14:26:18 PDT 2007


Author: raj
Date: 2007-06-05 14:26:16 -0700 (Tue, 05 Jun 2007)
New Revision: 125

Modified:
   trunk/Release_Notes
   trunk/acinclude.m4
   trunk/aclocal.m4
   trunk/configure
Log:
an m4 fix

Modified: trunk/Release_Notes
===================================================================
--- trunk/Release_Notes	2007-06-01 21:38:32 UTC (rev 124)
+++ trunk/Release_Notes	2007-06-05 21:26:16 UTC (rev 125)
@@ -2,6 +2,8 @@
 
 Things changed in this release:
 
+*) Replace "break" with "break 2" in acinclude.m4 for a socklen macro
+
 *) The default for the requested socket buffer size is changed from 0
    to -1 to enable passing a value of 0 under Windows, which tells that
    stack one wishes to enable copy-avoidance.

Modified: trunk/acinclude.m4
===================================================================
--- trunk/acinclude.m4	2007-06-01 21:38:32 UTC (rev 124)
+++ trunk/acinclude.m4	2007-06-05 21:26:16 UTC (rev 125)
@@ -66,7 +66,7 @@
                   getpeername(0,0,&len);
                ],[
                   curl_cv_socklen_t_equiv="$t"
-                  break
+                  break 2
                ])
             done
          done

Modified: trunk/aclocal.m4
===================================================================
--- trunk/aclocal.m4	2007-06-01 21:38:32 UTC (rev 124)
+++ trunk/aclocal.m4	2007-06-05 21:26:16 UTC (rev 125)
@@ -79,7 +79,7 @@
                   getpeername(0,0,&len);
                ],[
                   curl_cv_socklen_t_equiv="$t"
-                  break
+                  break 2
                ])
             done
          done

Modified: trunk/configure
===================================================================
--- trunk/configure	2007-06-01 21:38:32 UTC (rev 124)
+++ trunk/configure	2007-06-05 21:26:16 UTC (rev 125)
@@ -5457,7 +5457,7 @@
        } && test -s conftest.$ac_objext; then
 
                   curl_cv_socklen_t_equiv="$t"
-                  break
+                  break 2
 
 else
   echo "$as_me: failed program was:" >&5



More information about the netperf-dev mailing list