From owner-svn-src-all@FreeBSD.ORG Fri Mar 6 05:04:16 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 559071065672; Fri, 6 Mar 2009 05:04:16 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 431058FC12; Fri, 6 Mar 2009 05:04:16 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n2654Fjt008733; Fri, 6 Mar 2009 05:04:15 GMT (envelope-from kientzle@svn.freebsd.org) Received: (from kientzle@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n2654FGK008731; Fri, 6 Mar 2009 05:04:15 GMT (envelope-from kientzle@svn.freebsd.org) Message-Id: <200903060504.n2654FGK008731@svn.freebsd.org> From: Tim Kientzle Date: Fri, 6 Mar 2009 05:04:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r189432 - in head/lib/libarchive: . test X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 06 Mar 2009 05:04:16 -0000 Author: kientzle Date: Fri Mar 6 05:04:15 2009 New Revision: 189432 URL: http://svn.freebsd.org/changeset/base/189432 Log: Merge r435,r443 from libarchive.googlecode.com: Read config files from include path; this makes it easier to support multiple build frameworks. Modified: head/lib/libarchive/archive_platform.h head/lib/libarchive/test/test.h Modified: head/lib/libarchive/archive_platform.h ============================================================================== --- head/lib/libarchive/archive_platform.h Fri Mar 6 04:55:51 2009 (r189431) +++ head/lib/libarchive/archive_platform.h Fri Mar 6 05:04:15 2009 (r189432) @@ -44,7 +44,7 @@ #include PLATFORM_CONFIG_H #elif defined(HAVE_CONFIG_H) /* Most POSIX platforms use the 'configure' script to build config.h */ -#include "../config.h" +#include "config.h" #else /* Warn if the library hasn't been (automatically or manually) configured. */ #error Oops: No config.h and no pre-built configuration in archive_platform.h. Modified: head/lib/libarchive/test/test.h ============================================================================== --- head/lib/libarchive/test/test.h Fri Mar 6 04:55:51 2009 (r189431) +++ head/lib/libarchive/test/test.h Fri Mar 6 05:04:15 2009 (r189432) @@ -33,13 +33,13 @@ */ #if defined(HAVE_CONFIG_H) /* Most POSIX platforms use the 'configure' script to build config.h */ -#include "../../config.h" +#include "config.h" #elif defined(__FreeBSD__) /* Building as part of FreeBSD system requires a pre-built config.h. */ -#include "../config_freebsd.h" +#include "config_freebsd.h" #elif defined(_WIN32) /* Win32 can't run the 'configure' script. */ -#include "../config_windows.h" +#include "config_windows.h" #else /* Warn if the library hasn't been (automatically or manually) configured. */ #error Oops: No config.h and no pre-built configuration in test.h.