diff options
author | Martijn Kaijser <martijn@xbmc.org> | 2016-04-24 18:16:27 +0200 |
---|---|---|
committer | Martijn Kaijser <martijn@xbmc.org> | 2016-04-24 18:16:27 +0200 |
commit | d4b7b8f1b64ef738c3087c0b869a01983b2eecba (patch) | |
tree | 0b94078cd9563a3638bfe2fd5e3c40292efe0d4c /tools | |
parent | 2e582c5f71c3eceef654789a7b88b2c035605577 (diff) | |
parent | 2b395fb3f07551ae1ce2e484c14ac59f36e192b0 (diff) |
Merge pull request #9378 from bkuhls/texturepacker_gcc46
native/TexturePacker: fix compilation with gcc 4.6
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/native/TexturePacker/src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/native/TexturePacker/src/Makefile.am b/tools/depends/native/TexturePacker/src/Makefile.am index c1fc8be2e8..d075290c5f 100644 --- a/tools/depends/native/TexturePacker/src/Makefile.am +++ b/tools/depends/native/TexturePacker/src/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = subdir-objects AM_CFLAGS = -DTARGET_POSIX -DUSE_LZO_PACKING AM_CFLAGS += @EXTRA_DEFINES@ -AM_CXXFLAGS = $(AM_CFLAGS) -std=c++11 +AM_CXXFLAGS = $(AM_CFLAGS) -std=c++0x AM_CPPFLAGS = \ -I. \ |