Special case to support hard-coded configuration for building on Windows.

This commit is contained in:
Tim Kientzle 2007-01-07 21:32:25 +00:00
parent c94b70e1eb
commit 435c077c33

View File

@ -43,6 +43,9 @@
#elif defined(__FreeBSD__)
/* Building as part of FreeBSD system requires a pre-built config.h. */
#include "config_freebsd.h"
#elif defined(_WIN32)
/* Win32 can't run the 'configure' script. */
#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 archive_platform.h.