Skip to content

Commit

Permalink
PS2: Add support for building against old SDK if PS2SDK_OLD envvar set.
Browse files Browse the repository at this point in the history
This will allow compilation using the older SDK until the buildbot
PS2 toolchain SDK can be upgraded and we can confirm the newer SDK
builds are working correctly.
  • Loading branch information
digitall committed Apr 29, 2014
1 parent 6c2a7f0 commit bfc9afb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion configure
Expand Up @@ -2316,7 +2316,9 @@ case $_host_os in
CXXFLAGS="$CXXFLAGS -G2"
DEFINES="$DEFINES -D_EE"
DEFINES="$DEFINES -D__PLAYSTATION2__"
DEFINES="$DEFINES -D__NEW_PS2SDK__"
if test -z "$PS2SDK_OLD"; then
DEFINES="$DEFINES -D__NEW_PS2SDK__"
fi
;;
ps3)
# Force use of SDL and freetype from the ps3 toolchain
Expand Down

0 comments on commit bfc9afb

Please sign in to comment.