[Scummvm-git-logs] scummvm master -> e4473c067fe143b00de2467ce1340f3597159569

sev- sev at scummvm.org
Wed Feb 19 21:15:29 UTC 2020


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
755a26ab04 CONFIGURE: fixed documentation for '--with-sdl-prefix=' flag
e4473c067f CONFIGURE: --help: indent subengines


Commit: 755a26ab04444735d65dd6a6e9527f41905f39c6
    https://github.com/scummvm/scummvm/commit/755a26ab04444735d65dd6a6e9527f41905f39c6
Author: Zvika Haramaty (haramaty.zvika at gmail.com)
Date: 2020-02-19T23:15:23+02:00

Commit Message:
CONFIGURE: fixed documentation for '--with-sdl-prefix=' flag

Changed paths:
    configure


diff --git a/configure b/configure
index aa2e278..31bdf8a 100755
--- a/configure
+++ b/configure
@@ -1118,8 +1118,11 @@ Optional Libraries:
   --disable-osx-dock-plugin    disable the NSDockTilePlugin support
                                [Mac OS X only - autodetect]
 
-  --with-sdl-prefix=DIR    prefix where the sdl-config script is
-                           installed (optional)
+  --with-sdl-prefix=DIR    prefix where the SDL package is installed (optional)
+                           e.g., if sdl-config script is at:
+                           /opt/mxe/usr/i686-w64-mingw32.static/bin/sdl2-config
+                           then you should pass:
+                           '--with-sdl-prefix=/opt/mxe/usr/i686-w64-mingw32.static'
 
   --with-freetype2-prefix=DIR  prefix where the freetype-config script is
                                installed (optional)


Commit: e4473c067fe143b00de2467ce1340f3597159569
    https://github.com/scummvm/scummvm/commit/e4473c067fe143b00de2467ce1340f3597159569
Author: Zvika Haramaty (haramaty.zvika at gmail.com)
Date: 2020-02-19T23:15:23+02:00

Commit Message:
CONFIGURE: --help: indent subengines
Instead of showing subengines directly under their parent engine, like:
	illusions              Illusions Engine engine
	kyra                   Kyra engine
	lol                    Lands of Lore in Kyra engine
	eob                    Eye of the Beholder in Kyra engine
	lab                    Labyrinth of Time engine

Show them slightliy indented, like:
    illusions              Illusions Engine engine
	kyra                   Kyra engine
	- lol                  Lands of Lore in Kyra engine
	- eob                  Eye of the Beholder in Kyra engine
	lab                    Labyrinth of Time engine

It keeps the list sorted, and makes it easier to skim through it.

Changed paths:
    configure


diff --git a/configure b/configure
index 31bdf8a..9f3c4b0 100755
--- a/configure
+++ b/configure
@@ -771,7 +771,7 @@ show_engine_help() {
 show_subengine_help() {
 	name=`get_engine_name $1`
 	parent=`get_engine_name $2`
-	option_help "${1}" "${name} in ${parent} engine" "  "
+	option_help "- ${1}" "${name} in ${parent} engine" "  "
 }
 
 # Prepare the strings about the engines to build




More information about the Scummvm-git-logs mailing list