From owner-svn-src-projects@FreeBSD.ORG Thu Jan 16 21:47:28 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 901D2E45; Thu, 16 Jan 2014 21:47:28 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7BF711D1A; Thu, 16 Jan 2014 21:47:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0GLlSVG016045; Thu, 16 Jan 2014 21:47:28 GMT (envelope-from kaiw@svn.freebsd.org) Received: (from kaiw@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0GLlSV5016044; Thu, 16 Jan 2014 21:47:28 GMT (envelope-from kaiw@svn.freebsd.org) Message-Id: <201401162147.s0GLlSV5016044@svn.freebsd.org> From: Kai Wang Date: Thu, 16 Jan 2014 21:47:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r260792 - projects/elftoolchain/contrib/elftoolchain/libelf X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jan 2014 21:47:28 -0000 Author: kaiw Date: Thu Jan 16 21:47:27 2014 New Revision: 260792 URL: http://svnweb.freebsd.org/changeset/base/260792 Log: Use FreeBSD's ELF headers instead of the elfdefinitions.h header which comes with elftoolchain. This version of libelf doesn't need to be portable; using FreeBSD's own ELF headers will avoid conflicts and make integration easier. Modified: projects/elftoolchain/contrib/elftoolchain/libelf/libelf.h Modified: projects/elftoolchain/contrib/elftoolchain/libelf/libelf.h ============================================================================== --- projects/elftoolchain/contrib/elftoolchain/libelf/libelf.h Thu Jan 16 21:46:43 2014 (r260791) +++ projects/elftoolchain/contrib/elftoolchain/libelf/libelf.h Thu Jan 16 21:47:27 2014 (r260792) @@ -30,8 +30,8 @@ #define _LIBELF_H_ #include - -#include +#include +#include /* Library private data structures */ typedef struct _Elf Elf;