From owner-svn-src-head@FreeBSD.ORG Fri May 1 18:34:30 2015 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 545D649A; Fri, 1 May 2015 18:34:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 426EF1C42; Fri, 1 May 2015 18:34:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t41IYUVT002967; Fri, 1 May 2015 18:34:30 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t41IYTaA002963; Fri, 1 May 2015 18:34:29 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201505011834.t41IYTaA002963@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 1 May 2015 18:34:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r282316 - in head: contrib/mdocml lib/libmandoc X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 May 2015 18:34:30 -0000 Author: bapt Date: Fri May 1 18:34:29 2015 New Revision: 282316 URL: https://svnweb.freebsd.org/changeset/base/282316 Log: libc now has reallocarray Modified: head/contrib/mdocml/config.h head/lib/libmandoc/Makefile Modified: head/contrib/mdocml/config.h ============================================================================== --- head/contrib/mdocml/config.h Fri May 1 18:32:54 2015 (r282315) +++ head/contrib/mdocml/config.h Fri May 1 18:34:29 2015 (r282316) @@ -12,7 +12,7 @@ #define HAVE_FTS 1 #define HAVE_GETSUBOPT 1 #define HAVE_MMAP 1 -#define HAVE_REALLOCARRAY 0 +#define HAVE_REALLOCARRAY 1 #define HAVE_STRCASESTR 1 #define HAVE_STRLCAT 1 #define HAVE_STRLCPY 1 Modified: head/lib/libmandoc/Makefile ============================================================================== --- head/lib/libmandoc/Makefile Fri May 1 18:32:54 2015 (r282315) +++ head/lib/libmandoc/Makefile Fri May 1 18:34:29 2015 (r282316) @@ -28,11 +28,9 @@ LIBROFF_SRCS= eqn.c \ tbl_layout.c \ tbl_opts.c -COMPAT_SRCS= compat_reallocarray.c SRCS= ${LIBMAN_SRCS} \ ${LIBMDOC_SRCS} \ ${LIBROFF_SRCS} \ - ${COMPAT_SRCS} \ chars.c \ mandoc.c \ mandoc_aux.c \