diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2010-12-05 15:24:10 +0000 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2010-12-05 15:24:10 +0000 |
commit | 271441eb9d568525a72cde810a64b63db5a39147 (patch) | |
tree | 62896f581829e4ad90bd1b6e1615d5d7597d58c5 /rbutil/sansapatcher | |
parent | 465e75a2bacee4349e8d70e8de8760e1bb5086e2 (diff) | |
download | rockbox-271441eb9d568525a72cde810a64b63db5a39147.tar.gz rockbox-271441eb9d568525a72cde810a64b63db5a39147.zip |
MinGW: prefer C99 compliance by using replacement implementations.
This addresses several warnings caused by format modifiers that are not
supported by MSVCRT. MinGW provides replacement functions since mingw-runtime
3.15 so use them. See also
http://article.gmane.org/gmane.comp.gnu.mingw.user/27539/
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28735 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/sansapatcher')
-rw-r--r-- | rbutil/sansapatcher/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rbutil/sansapatcher/Makefile b/rbutil/sansapatcher/Makefile index be764c90f4..05739245b9 100644 --- a/rbutil/sansapatcher/Makefile +++ b/rbutil/sansapatcher/Makefile @@ -8,6 +8,7 @@ else ifeq ($(findstring MINGW,$(shell uname)),MINGW) OUTPUT=sansapatcher.exe CROSS= +CFLAGS+=-D__USE_MINGW_ANSI_STDIO=1 else OUTPUT=sansapatcher CROSS=i586-mingw32msvc- |