Differences From Artifact [3ccfd8c6b5]:
- File build-aux/m4/buildsys.m4 — part of check-in [558c812e4b] at 2020-10-02 23:32:09 on branch trunk — Add AC_SUBST for FRAMEWORK_LIBS (user: js, size: 11982) [annotate] [blame] [check-ins using]
To Artifact [647753f85b]:
- File
build-aux/m4/buildsys.m4
— part of check-in
[349e5fb9d2]
at
2020-11-21 22:28:53
on branch trunk
— Don't use tput on MorphOS
The colored output is quite unreadable and in some MorphOS versions, the
output from tput is not 8-bit safe, with awk (for AC_SUBST) failing as a
result. (user: js, size: 12267) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
45 46 47 48 49 50 51 | [AC_SUBST(DEP_OBJCFLAGS, '-MD -MF $${out%.o}.dep')]) AS_IF([test x"$GOBJCXX" = x"yes"], [AC_SUBST(DEP_OBJCXXFLAGS, '-MD -MF $${out%.o}.dep')]) AC_SUBST(AMIGA_LIB_CFLAGS) AC_SUBST(AMIGA_LIB_LDFLAGS) | > > > > > > > > > | > > | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | [AC_SUBST(DEP_OBJCFLAGS, '-MD -MF $${out%.o}.dep')]) AS_IF([test x"$GOBJCXX" = x"yes"], [AC_SUBST(DEP_OBJCXXFLAGS, '-MD -MF $${out%.o}.dep')]) AC_SUBST(AMIGA_LIB_CFLAGS) AC_SUBST(AMIGA_LIB_LDFLAGS) case "$build_os" in morphos*) dnl Don't use tput on MorphOS: The colored dnl output is quite unreadable and in some dnl MorphOS versions, the output from tput is dnl not 8-bit safe, with awk (for AC_SUBST) dnl failing as a result. ;; *) AC_PATH_PROG(TPUT, tput) ;; esac AS_IF([test x"$TPUT" != x""], [ if x=$($TPUT el 2>/dev/null); then AC_SUBST(TERM_EL, "$x") else AC_SUBST(TERM_EL, "$($TPUT ce 2>/dev/null)") fi |
︙ | ︙ |