From owner-svn-src-all@FreeBSD.ORG Thu Nov 15 04:42:30 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E82479D1; Thu, 15 Nov 2012 04:42:30 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id CCA568FC12; Thu, 15 Nov 2012 04:42:30 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAF4gUmi018719; Thu, 15 Nov 2012 04:42:30 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAF4gUg6018718; Thu, 15 Nov 2012 04:42:30 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <201211150442.qAF4gUg6018718@svn.freebsd.org> From: Marcel Moolenaar Date: Thu, 15 Nov 2012 04:42:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r243054 - head/contrib/atf/atf-c X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Nov 2012 04:42:31 -0000 Author: marcel Date: Thu Nov 15 04:42:30 2012 New Revision: 243054 URL: http://svnweb.freebsd.org/changeset/base/243054 Log: The *_STR* macros use strcmp() to check their arguments. Include string.h to have this definition available. Upstream commit: 1dc1884f778f88811583e6a54610a6d7e421ca63 Submitted by: Garrett Cooper Modified: head/contrib/atf/atf-c/macros.h Modified: head/contrib/atf/atf-c/macros.h ============================================================================== --- head/contrib/atf/atf-c/macros.h Thu Nov 15 04:39:23 2012 (r243053) +++ head/contrib/atf/atf-c/macros.h Thu Nov 15 04:42:30 2012 (r243054) @@ -30,6 +30,8 @@ #if !defined(ATF_C_MACROS_H) #define ATF_C_MACROS_H +#include + #include #include #include