ObjFW  Check-in [70a03ac466]

Overview
Comment:configure: Fix missing yes output
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 70a03ac466ced14d65727582b1e7db91b7c2ae076d0119ed865ce42d7a294fbd
User & Date: js on 2023-04-30 10:22:16
Other Links: manifest | tags
Context
2023-05-03
22:22
Fix compilation with older Clang versions check-in: 5591bf6a0b user: js tags: trunk
2023-04-30
10:22
configure: Fix missing yes output check-in: 70a03ac466 user: js tags: trunk
2023-04-24
22:09
PLATFORMS.md: Add Oracle Solaris 11.4 check-in: 02ed4ae232 user: js tags: trunk
Changes

Modified configure.ac from [3a58dbf66e] to [1914e7a77f].

1920
1921
1922
1923
1924
1925
1926
1927


1928
1929
1930
1931
1932
1933
1934
	AC_EGREP_CPP(egrep_cpp_yes, [
		#include <TargetConditionals.h>

		#if (!defined(TARGET_OS_IPHONE) || !TARGET_OS_IPHONE) && \
		    (!defined(TARGET_OS_SIMULATOR) || !TARGET_OS_SIMULATOR)
		egrep_cpp_yes
		#endif
	], [], [


		AC_MSG_RESULT(no)
		have_subprocesses="no"
	])
	;;
mingw*)
	have_subprocesses="yes"
	;;







|
>
>







1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
	AC_EGREP_CPP(egrep_cpp_yes, [
		#include <TargetConditionals.h>

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