Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Jul 2016 01:35:27 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r302321 - in head/contrib/libxo: . tests/core
Message-ID:  <201607030135.u631ZRq3002558@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sun Jul  3 01:35:27 2016
New Revision: 302321
URL: https://svnweb.freebsd.org/changeset/base/302321

Log:
  Update libxo to 0.6.3
  
  This fixes the 02 testcases on i386 (at least), and may fix the testcases
  in general on 32-bit platforms
  
  Differential Revision: https://reviews.freebsd.org/D7052
  Approved by: phil (maintainer)
  Approved by: re (gjb)
  Reported by: asomers
  Reviewed by: phil
  Submitted by: phil
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/contrib/libxo/configure.ac
  head/contrib/libxo/tests/core/test_02.c
Directory Properties:
  head/contrib/libxo/   (props changed)

Modified: head/contrib/libxo/configure.ac
==============================================================================
--- head/contrib/libxo/configure.ac	Sun Jul  3 01:23:38 2016	(r302320)
+++ head/contrib/libxo/configure.ac	Sun Jul  3 01:35:27 2016	(r302321)
@@ -12,7 +12,7 @@
 #
 
 AC_PREREQ(2.2)
-AC_INIT([libxo], [0.6.2], [phil@juniper.net])
+AC_INIT([libxo], [0.6.3], [phil@juniper.net])
 AM_INIT_AUTOMAKE([-Wall -Werror foreign -Wno-portability])
 
 # Support silent build rules.  Requires at least automake-1.11.

Modified: head/contrib/libxo/tests/core/test_02.c
==============================================================================
--- head/contrib/libxo/tests/core/test_02.c	Sun Jul  3 01:23:38 2016	(r302320)
+++ head/contrib/libxo/tests/core/test_02.c	Sun Jul  3 01:35:27 2016	(r302321)
@@ -70,7 +70,7 @@ main (int argc, char **argv)
 
     xo_emit(" {:lines/%7ju} {:words/%7ju} "
             "{:characters/%7ju} {d:filename/%s}\n",
-            20, 30, 40, "file");
+            (uintmax_t) 20, (uintmax_t) 30, (uintmax_t) 40, "file");
 
     int i;
     for (i = 0; i < 5; i++)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607030135.u631ZRq3002558>