Date: Sat, 6 Dec 2008 05:53:05 +0000 (UTC) From: Tim Kientzle <kientzle@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r185665 - head/lib/libarchive Message-ID: <200812060553.mB65r5Ub084246@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kientzle Date: Sat Dec 6 05:53:05 2008 New Revision: 185665 URL: http://svn.freebsd.org/changeset/base/185665 Log: Windows build now uses PLATFORM_CONFIG_H macro, so we can eliminate the special case for it. Modified: head/lib/libarchive/archive_platform.h Modified: head/lib/libarchive/archive_platform.h ============================================================================== --- head/lib/libarchive/archive_platform.h Sat Dec 6 05:52:01 2008 (r185664) +++ head/lib/libarchive/archive_platform.h Sat Dec 6 05:53:05 2008 (r185665) @@ -39,10 +39,7 @@ /* archive.h and archive_entry.h require this. */ #define __LIBARCHIVE_BUILD 1 -#ifdef _WIN32 -#include "config_windows.h" -#include "archive_windows.h" -#elif defined(PLATFORM_CONFIG_H) +#if defined(PLATFORM_CONFIG_H) /* Use hand-built config.h in environments that need it. */ #include PLATFORM_CONFIG_H #elif defined(HAVE_CONFIG_H)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812060553.mB65r5Ub084246>