ObjFW  Check-in [a497302c08]

Overview
Comment:configure: Force-enable files on MorphOS + libnix

File support is required for reading ENV:.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a497302c081635e08fa6c23eb98d5284897cf4e04e633579ceb593d0a8448c8a
User & Date: js on 2017-06-03 16:19:48
Other Links: manifest | tags
Context
2017-06-03
16:58
Make sockets work on MorphOS + libnix check-in: 3cba61d694 user: js tags: trunk
16:19
configure: Force-enable files on MorphOS + libnix check-in: a497302c08 user: js tags: trunk
16:17
Workaround for libnix strtod not parsing INFINITY check-in: fe5b5de3b6 user: js tags: trunk
Changes

Modified configure.ac from [b5d8fa3661] to [5c29d3ac98].

18
19
20
21
22
23
24

25
26
27
28
29
30
31
check_pedantic="yes"

case "$host" in
	*-morphos*)
		AS_IF([test x"$with_ixemul" != x"yes"], [
			OBJCFLAGS="$OBJCFLAGS -noixemul"
			LDFLAGS="$LDFLAGS -noixemul"


			AC_SUBST(NOIXEMUL, -noixemul)
		])

		enable_shared="no"
		enable_threads="no"
		;;







>







18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
check_pedantic="yes"

case "$host" in
	*-morphos*)
		AS_IF([test x"$with_ixemul" != x"yes"], [
			OBJCFLAGS="$OBJCFLAGS -noixemul"
			LDFLAGS="$LDFLAGS -noixemul"
			enable_files="yes"	# Required for reading ENV:

			AC_SUBST(NOIXEMUL, -noixemul)
		])

		enable_shared="no"
		enable_threads="no"
		;;