Ticket #8553: scummvm090_theme.diff
File scummvm090_theme.diff, 1.5 KB (added by , 18 years ago) |
---|
-
configure
292 292 --prefix=DIR use this prefix for installing ScummVM [/usr/local] 293 293 --bindir=DIR directory to install the scummvm binary in [PREFIX/bin] 294 294 --mandir=DIR directory to install the manpage in [PREFIX/man] 295 --datadir=DIR directory to install the data files in [PREFIX/share] 295 296 296 297 Special configuration feature: 297 298 --host=HOST cross-compile to target HOST (arm-linux, ...) … … 483 484 --mandir=*) 484 485 _mandir=`echo $ac_option | cut -d '=' -f 2` 485 486 ;; 487 --datadir=*) 488 _datadir=`echo $ac_option | cut -d '=' -f 2` 489 ;; 486 490 *) 487 491 echo "error: unrecognised option: $ac_option 488 492 Try \`$0 --help' for more information." >&2 … … 1242 1246 # 1243 1247 test -z "$_bindir" && _bindir="$_prefix/bin" 1244 1248 test -z "$_mandir" && _mandir="$_prefix/man" 1249 test -z "$_datadir" && _datadir="$_prefix/share" 1245 1250 1251 CXXFLAGS="$CXXFLAGS -DDATA_PATH=\\\"$_datadir/scummvm\\\"" 1252 1253 1246 1254 # 1247 1255 # Check which engines ("frontends") are to be built 1248 1256 # -
gui/ThemeNew.cpp
73 73 clearAll(); 74 74 } 75 75 76 #ifdef DATA_PATH 77 Common::File::addDefaultDirectoryRecursive(DATA_PATH); 78 #endif 79 80 76 81 if (ConfMan.hasKey("extrapath")) 77 82 Common::File::addDefaultDirectoryRecursive(ConfMan.get("extrapath")); 78 83