ObjFW  Check-in [fb9371a7ce]

Overview
Comment:Use OFStreamObserver_select on Win32, even if sys/select.h is missing.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: fb9371a7ce5088ccde66407a921bfbe41e4f4cafa6667c813c70bbd0b221830c
User & Date: js on 2011-10-12 14:35:35
Other Links: manifest | tags
Context
2011-10-12
14:57
Update buildsys. check-in: 24ea7eb831 user: js tags: trunk
14:35
Use OFStreamObserver_select on Win32, even if sys/select.h is missing. check-in: fb9371a7ce user: js tags: trunk
14:26
Use the new GNU API if gcc >= 4.7. check-in: 3e3f49406a user: js tags: trunk
Changes

Modified configure.ac from [1ca508f214] to [28a776e349].

636
637
638
639
640
641
642


643
644
645
646
647
648
649
])

AS_IF([test x"$cross_compiling" = x"yes"], [
	AC_SUBST(BIN_PREFIX, "$host-")

	case "$host" in
		*-*-mingw*)


			AC_CHECK_PROG(WINE, wine, wine)

			AS_IF([test x"$WINE" != x""], [
				AC_SUBST(TESTS, "tests")
				AC_SUBST(TEST_LAUNCHER, "$WINE")
			])
			;;







>
>







636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
])

AS_IF([test x"$cross_compiling" = x"yes"], [
	AC_SUBST(BIN_PREFIX, "$host-")

	case "$host" in
		*-*-mingw*)
			AC_SUBST(OFSTREAMOBSERVER_SELECT_M,
				"OFStreamObserver_select.m")
			AC_CHECK_PROG(WINE, wine, wine)

			AS_IF([test x"$WINE" != x""], [
				AC_SUBST(TESTS, "tests")
				AC_SUBST(TEST_LAUNCHER, "$WINE")
			])
			;;