ObjFW  Check-in [69c1ab4102]

Overview
Comment:Disable OFProcess for iOS and DJGPP/DOS.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 69c1ab4102d2fdfbcac899bc957cc14fc334a2ddcc0d3176f1baa78a4a48f687
User & Date: js on 2013-12-05 17:48:23
Other Links: manifest | tags
Context
2013-12-05
21:26
Check for iOS in configure instead of macros.h. check-in: 8602025532 user: js tags: trunk
17:48
Disable OFProcess for iOS and DJGPP/DOS. check-in: 69c1ab4102 user: js tags: trunk
17:48
Make coding style consistent. check-in: fa6496efc7 user: js tags: trunk
Changes

Modified configure.ac from [d1b16c9399] to [eea9d480d8].

718
719
720
721
722
723
724



725
726
727



728
729
730
731
732
733
734
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740







+
+
+



+
+
+







])

AS_IF([test x"$enable_sockets" != x"no" -a x"$enable_threads" != x"no"], [
	AC_SUBST(OFHTTPCLIENTTESTS_M, "OFHTTPClientTests.m")
])

case "$host" in
	arm-apple-darwin*)
		have_processes="no"
		;;
	*-*-mingw*)
		have_processes="yes"
		;;
	*-*-msdosdjgpp*)
		have_processes="no"
		;;
	*)
		AC_CHECK_FUNCS([fork dup2 execvp kill], [
			if test x"$ac_cv_func_fork" = x"yes" \
			    -a x"$ac_cv_func_pipe" = x"yes" \
			    -a x"$ac_cv_func_dup2" = x"yes" \
			    -a x"$ac_cv_func_execvp" = x"yes" \
			    -a x"$ac_cv_func_kill" = x"yes"; then