ObjFW  Check-in [2bd1eda5fe]

Overview
Comment:configure.ac: Disable features on DJGPP/DOS.

This automatically disables shared libraries, threads and sockets when
compiling for DJGPP/DOS.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2bd1eda5fe9d142760d25677392a5bc63bd3dc080e274caf920a4cf7a0037613
User & Date: js on 2013-12-06 03:07:04
Other Links: manifest | tags
Context
2013-12-07
16:49
configure.ac: Use C11 if available. check-in: a6f2b8570c user: js tags: trunk
2013-12-06
03:07
configure.ac: Disable features on DJGPP/DOS. check-in: 2bd1eda5fe user: js tags: trunk
03:06
configure.ac: Remove -fno-objc-nonfragile-abi. check-in: 808de50cca user: js tags: trunk
Changes

Modified configure.ac from [b90f758119] to [942c90823c].

17
18
19
20
21
22
23








24
25
26
27
28
29
30
	enable_threads="no"	# TODO
	enable_sockets="no"	# TODO

	AC_SUBST(MAP_LDFLAGS, ['-Wl,-Map,$@.map'])
])

AC_CANONICAL_HOST









AC_LANG([Objective C])
AC_PROG_OBJC([clang gcc])
AC_PROG_OBJCPP
AC_PROG_LN_S
AC_PROG_INSTALL
AC_PROG_EGREP







>
>
>
>
>
>
>
>







17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
	enable_threads="no"	# TODO
	enable_sockets="no"	# TODO

	AC_SUBST(MAP_LDFLAGS, ['-Wl,-Map,$@.map'])
])

AC_CANONICAL_HOST

case "$host_os" in
	msdosdjgpp*)
		enable_shared="no"
		enable_threads="no"
		enable_sockets="no"
		;;
esac

AC_LANG([Objective C])
AC_PROG_OBJC([clang gcc])
AC_PROG_OBJCPP
AC_PROG_LN_S
AC_PROG_INSTALL
AC_PROG_EGREP