summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <funman@videolan.org>2012-02-05 14:03:10 -0500
committerRafaël Carré <rafael.carre@gmail.com>2012-02-05 20:36:31 +0100
commitdb3afb03a26868b00011e9aab9733643440bc03a (patch)
tree6d825195466105502fc0a57103784ff6fe7a115a
parente67a1af35fe54b376bafb76eae500ac009631ba2 (diff)
downloadrockbox-db3afb03a26868b00011e9aab9733643440bc03a.tar.gz
rockbox-db3afb03a26868b00011e9aab9733643440bc03a.zip
Make sure we use POSIX/C99 printf() when building for windows
Change-Id: I429ed40dc2b9d4fb238762113bd40936df896df0 Reviewed-on: http://gerrit.rockbox.org/85 Reviewed-by: Dominik Riebeling <Dominik.Riebeling@gmail.com>
-rw-r--r--rbutil/ipodpatcher/Makefile2
-rw-r--r--rbutil/libtools.make3
-rw-r--r--rbutil/sansapatcher/Makefile2
3 files changed, 5 insertions, 2 deletions
diff --git a/rbutil/ipodpatcher/Makefile b/rbutil/ipodpatcher/Makefile
index 6a94466a0c..bae805671e 100644
--- a/rbutil/ipodpatcher/Makefile
+++ b/rbutil/ipodpatcher/Makefile
@@ -7,7 +7,7 @@
7# $Id$ 7# $Id$
8# 8#
9 9
10CFLAGS += -Wall -W -D__USE_MINGW_ANSI_STDIO=1 10CFLAGS += -Wall -W
11 11
12# Build with "make BOOTOBJS=1" to build with embedded bootloaders and the 12# Build with "make BOOTOBJS=1" to build with embedded bootloaders and the
13# --install option and interactive mode. You need the full set of Rockbox 13# --install option and interactive mode. You need the full set of Rockbox
diff --git a/rbutil/libtools.make b/rbutil/libtools.make
index b3015015ed..cc582ce015 100644
--- a/rbutil/libtools.make
+++ b/rbutil/libtools.make
@@ -27,6 +27,9 @@ APPVERSION ?= $(shell $(TOP)/../tools/version.sh ../)
27CFLAGS += -DVERSION=\"$(APPVERSION)\" 27CFLAGS += -DVERSION=\"$(APPVERSION)\"
28TARGET_DIR ?= $(shell pwd)/ 28TARGET_DIR ?= $(shell pwd)/
29 29
30# use POSIX/C99 printf on windows
31CFLAGS += -D__USE_MINGW_ANSI_STDIO=1
32
30BINARY = $(OUTPUT) 33BINARY = $(OUTPUT)
31# when building a Windows binary add the correct file suffix 34# when building a Windows binary add the correct file suffix
32ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN) 35ifeq ($(findstring CYGWIN,$(shell uname)),CYGWIN)
diff --git a/rbutil/sansapatcher/Makefile b/rbutil/sansapatcher/Makefile
index c510d968bb..b3bf51ee2a 100644
--- a/rbutil/sansapatcher/Makefile
+++ b/rbutil/sansapatcher/Makefile
@@ -6,7 +6,7 @@
6# \/ \/ \/ \/ \/ 6# \/ \/ \/ \/ \/
7 7
8TARGET_DIR ?= $(shell pwd)/ 8TARGET_DIR ?= $(shell pwd)/
9CFLAGS += -Wall -W -D_LARGEFILE64_SOURCE -D__USE_MINGW_ANSI_STDIO=1 9CFLAGS += -Wall -W -D_LARGEFILE64_SOURCE
10 10
11OUTPUT = sansapatcher 11OUTPUT = sansapatcher
12 12