svn commit: r185665 - head/lib/libarchive

Tim Kientzle kientzle at FreeBSD.org
Fri Dec 5 21:53:05 PST 2008


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)


More information about the svn-src-head mailing list