diff options
author | kientzle <kientzle@FreeBSD.org> | 2008-12-06 05:53:05 +0000 |
---|---|---|
committer | kientzle <kientzle@FreeBSD.org> | 2008-12-06 05:53:05 +0000 |
commit | f7c489d836af10a828e5a3284edac0ee33bc4793 (patch) | |
tree | b7b5a1c096c61551efa1ea71d8792e45603678f6 /lib | |
parent | cb9f366909e754641fe949deec26178b5176c849 (diff) | |
download | FreeBSD-src-f7c489d836af10a828e5a3284edac0ee33bc4793.zip FreeBSD-src-f7c489d836af10a828e5a3284edac0ee33bc4793.tar.gz |
Windows build now uses PLATFORM_CONFIG_H macro, so we can eliminate the
special case for it.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libarchive/archive_platform.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libarchive/archive_platform.h b/lib/libarchive/archive_platform.h index f43522e..4905faf 100644 --- a/lib/libarchive/archive_platform.h +++ b/lib/libarchive/archive_platform.h @@ -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) |