better logic for determining whether or not DLL cruft is needed

This commit is contained in:
Josh Coalson
2003-01-08 08:02:14 +00:00
parent d2f55cd24a
commit a7cf2336f7
4 changed files with 4 additions and 4 deletions

View File

@@ -20,7 +20,7 @@
#ifndef FLAC__EXPORT_H
#define FLAC__EXPORT_H
#if defined(FLAC__NO_DLL) || defined(unix) || defined(__CYGWIN__) || defined(__CYGWIN32__)
#if defined(FLAC__NO_DLL) || !defined(_MSC_VER)
#define FLAC_API
#else