ObjFW  Check-in [0da6a13999]

Overview
Comment:Use posix_spawn() on macOS
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0da6a1399953ca9ca5c2040ff1d158d3d8e1c6655cbbd4a0414b86b47361e3e8
User & Date: js on 2021-12-13 03:40:20
Other Links: manifest | tags
Context
2021-12-17
17:53
OFStream: Remove methods for typed/swapped arrays check-in: 808601a0cc user: js tags: trunk
2021-12-13
03:40
Use posix_spawn() on macOS check-in: 0da6a13999 user: js tags: trunk
01:49
Fix subprocesses check-in: c2bf5b0410 user: js tags: trunk
Changes

Modified configure.ac from [70eb30ec3e] to [1748dfb2e4].

1640
1641
1642
1643
1644
1645
1646



1647
1648
1649
1650
1651
1652
1653
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656







+
+
+







		#if (!defined(TARGET_OS_IPHONE) || !TARGET_OS_IPHONE) && \
		    (!defined(TARGET_OS_SIMULATOR) || !TARGET_OS_SIMULATOR)
		egrep_cpp_yes
		#endif
	], [
		AC_MSG_RESULT(yes)
		have_subprocesses="yes"

		AC_CHECK_FUNCS(posix_spawnp)
		AC_CHECK_HEADERS(spawn.h)
	], [
		AC_MSG_RESULT(no)
		have_subprocesses="no"
	])
	;;
mingw*)
	have_subprocesses="yes"