Skip to content

Commit

Permalink
Merge pull request knik0#11 from ccawley2011/mingw
Browse files Browse the repository at this point in the history
Fix compilation with MinGW
  • Loading branch information
knik0 authored Dec 23, 2017
2 parents 9a00b58 + b85c744 commit 7da4a83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libfaad/decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
uint16_t dbg_count;
#endif

#if defined WIN32 || defined _WIN32 || defined WIN64 || defined _WIN64
#if (defined WIN32 || defined _WIN32 || defined WIN64 || defined _WIN64) && !defined(PACKAGE_VERSION)
#include "win32_ver.h"
#endif

Expand Down

0 comments on commit 7da4a83

Please sign in to comment.