[Scummvm-cvs-logs] scummvm master -> cd8c702544fe75d333fa4fa7280f891f9fef7ed6
Kirben
kirben at optusnet.com.au
Tue Jul 9 03:02:27 CEST 2013
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
cd8c702544 BUILD: Disable data path in mingw builds, since it was using a hard coded path. All external data files are stored in th
Commit: cd8c702544fe75d333fa4fa7280f891f9fef7ed6
https://github.com/scummvm/scummvm/commit/cd8c702544fe75d333fa4fa7280f891f9fef7ed6
Author: Kirben (kirben at optusnet.com.au)
Date: 2013-07-08T18:00:55-07:00
Commit Message:
BUILD: Disable data path in mingw builds, since it was using a hard coded path. All external data files are stored in the Windows executable file anyway.
Changed paths:
configure
diff --git a/configure b/configure
index 5a7b310..9fa698a 100755
--- a/configure
+++ b/configure
@@ -3946,7 +3946,14 @@ fi
test "x$prefix" = xNONE && prefix=/usr/local
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
-DEFINES="$DEFINES -DDATA_PATH=\\\"$datadir\\\""
+case $_host_os in
+ mingw*)
+ # Windows stores all the external data files in executable file.
+ ;;
+ *)
+ DEFINES="$DEFINES -DDATA_PATH=\\\"$datadir\\\""
+ ;;
+esac
case $_backend in
openpandora)
More information about the Scummvm-git-logs
mailing list