buildsys  Check-in [8bd9a9831b]

Overview
Comment:Style change: Don't indent cases
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 8bd9a9831b530887ada806b1e4780d7de929f9e17c2de9806b194a8fdec1ce8c
User & Date: js on 2020-12-22 23:03:12
Other Links: manifest | tags
Context
2020-12-29
22:41
Include AMIGA_LIB_OBJS_START in clean check-in: 858b26298b user: js tags: trunk
2020-12-22
23:03
Style change: Don't indent cases check-in: 8bd9a9831b user: js tags: trunk
2020-11-21
22:28
Don't use tput on MorphOS check-in: 349e5fb9d2 user: js tags: trunk
Changes

Modified build-aux/m4/buildsys.m4 from [647753f85b] to [b87a47a9ad].

47
48
49
50
51
52
53
54
55


56
57
58


59
60
61
62
63
64
65
47
48
49
50
51
52
53


54
55



56
57
58
59
60
61
62
63
64







-
-
+
+
-
-
-
+
+







			[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 Don't use tput on MorphOS: The colored output is
			dnl quite unreadable and in some MorphOS versions the
				dnl MorphOS versions, the output from tput is
				dnl not 8-bit safe, with awk (for AC_SUBST)
				dnl failing as a result.
			dnl output from tput is not 8-bit safe, with awk (for
			dnl AC_SUBST) failing as a result.
				;;
			*)
				AC_PATH_PROG(TPUT, tput)
				;;
		esac

		AS_IF([test x"$TPUT" != x""], [
124
125
126
127
128
129
130
131

132
133
134
135
136
137
138
139
123
124
125
126
127
128
129

130

131
132
133
134
135
136
137







-
+
-







AC_DEFUN([BUILDSYS_CHECK_IOS], [
	case "$host_os" in
		darwin*)
			AC_MSG_CHECKING(whether host is iOS)
			AC_EGREP_CPP(yes, [
				#include <TargetConditionals.h>

				#if (defined(TARGET_OS_IPHONE) && \
			#if (defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE) || \
				    TARGET_OS_IPHONE) || \
				    (defined(TARGET_OS_SIMULATOR) && \
				    TARGET_OS_SIMULATOR)
				yes
				#endif
			], [
				host_is_ios="yes"
			], [

Modified buildsys.mk.in from [1766cbea3c] to [7e6d1c0982].

whitespace changes only