diff options
author | Cameron Cawley | 2019-04-17 22:06:17 +0100 |
---|---|---|
committer | David Turner | 2019-04-18 03:55:22 +0100 |
commit | 50ed922cb7466c25d874260e9c341cfbdb108341 (patch) | |
tree | 2bbbda13bdfe6f6ecf8d745741f2dcbdcafc5106 /configure | |
parent | bcd44e7d95a3d8ceb957b5d611aa35e165a590d8 (diff) | |
download | scummvm-rg350-50ed922cb7466c25d874260e9c341cfbdb108341.tar.gz scummvm-rg350-50ed922cb7466c25d874260e9c341cfbdb108341.tar.bz2 scummvm-rg350-50ed922cb7466c25d874260e9c341cfbdb108341.zip |
RISCOS: Support creating a StrongHelp manual
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1851,6 +1851,11 @@ riscos) elif `which tokenize >/dev/null 2>&1`; then add_line_to_config_mk "TOKENIZE := tokenize" fi + if test -e "$GCCSDK_INSTALL_ENV/bin/bindhelp"; then + add_line_to_config_mk "BINDHELP := $GCCSDK_INSTALL_ENV/bin/bindhelp" + elif `which bindhelp >/dev/null 2>&1`; then + add_line_to_config_mk "BINDHELP := bindhelp" + fi ;; tizen) if test -z "$TIZEN_ROOTSTRAP"; then @@ -2892,6 +2897,7 @@ case $_host_os in append_var CXXFLAGS "-fdata-sections" append_var LDFLAGS "-Wl,--gc-sections" _port_mk="backends/platform/sdl/riscos/riscos.mk" + _pandoc=yes ;; solaris*) append_var DEFINES "-DSOLARIS" |