ObjFW  Check-in [0a58a95122]

Overview
Comment:Update buildsys
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0a58a95122734332abebda2be3ea0cfd2c08a8c201ebda578b8cdc1a37844107
User & Date: js on 2020-12-22 23:04:09
Other Links: manifest | tags
Context
2020-12-22
23:10
Style change: Don't indent cases in shell scripts check-in: 478feb4614 user: js tags: trunk
23:04
Update buildsys check-in: 0a58a95122 user: js tags: trunk
22:56
configure: Style change: Don't indent cases check-in: 1e740abed1 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
			[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""], [







|
|
<
|
|







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 output is
			dnl quite unreadable and in some MorphOS versions the

			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
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) && \
				    TARGET_OS_IPHONE) || \
				    (defined(TARGET_OS_SIMULATOR) && \
				    TARGET_OS_SIMULATOR)
				yes
				#endif
			], [
				host_is_ios="yes"
			], [







|
<







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) && 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