ObjFW  Check-in [31d6703635]

Overview
Comment:configure: Disable shared and threads on MorphOS
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 31d6703635e5a5c95f0ba730ca28c1d60cf8e7238bb873e9523544eecfde90f9
User & Date: js on 2017-05-17 22:23:48
Other Links: manifest | tags
Context
2017-05-17
22:27
PLATFORMS.md: Add MorphOS check-in: b128c261c9 user: js tags: trunk
22:23
configure: Disable shared and threads on MorphOS check-in: 31d6703635 user: js tags: trunk
22:14
typedef socklen_t to int on MorphOS check-in: d302df8b46 user: js tags: trunk
Changes

Modified configure.ac from [420b270dc8] to [3364a09f59].

11
12
13
14
15
16
17




18
19
20
21
22
23
24

AC_CANONICAL_HOST

dnl Used to disable checking for -pedantic on some platforms where it's broken
check_pedantic="yes"

case "$host" in




	*-msdosdjgpp*)
		enable_shared="no"
		enable_threads="no"
		enable_sockets="no"
		;;
	*-*-mingw*)
		LDFLAGS="$LDFLAGS -Wl,--allow-multiple-definition"







>
>
>
>







11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

AC_CANONICAL_HOST

dnl Used to disable checking for -pedantic on some platforms where it's broken
check_pedantic="yes"

case "$host" in
	*-morphos*)
		enable_shared="no"
		enable_threads="no"
		;;
	*-msdosdjgpp*)
		enable_shared="no"
		enable_threads="no"
		enable_sockets="no"
		;;
	*-*-mingw*)
		LDFLAGS="$LDFLAGS -Wl,--allow-multiple-definition"