ObjFW  Check-in [42af51eab4]

Overview
Comment:configure.ac: Add defines necessary for Solaris
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 42af51eab42dd375309057b515ced391bba396998b8444a9c571d8ff4249d06c
User & Date: js on 2015-04-11 13:46:39
Other Links: manifest | tags
Context
2015-04-11
14:15
lookup-asm-x86-elf.S: Use \not_found@GOT(%eax) check-in: 1300995979 user: js tags: trunk
13:46
configure.ac: Add defines necessary for Solaris check-in: 42af51eab4 user: js tags: trunk
12:59
OFSystemInfo: Work around GCC being stupid check-in: 406dfede9e user: js tags: trunk
Changes

Modified configure.ac from [eaf9523297] to [77b93dd29a].

196
197
198
199
200
201
202






203
204
205
206
207
208
209
	#endif
], [
	CPPFLAGS="-D_GNU_SOURCE $CPPFLAGS"
	AC_MSG_RESULT(yes)
], [
	AC_MSG_RESULT(no)
])







objc_runtime="ObjFW runtime"
AC_CHECK_HEADER(objc/objc.h)
AC_MSG_CHECKING(which Objective C runtime to use)
AC_ARG_ENABLE(runtime,
	AS_HELP_STRING([--enable-runtime], [use the included runtime]))
AC_ARG_ENABLE(seluid24,







>
>
>
>
>
>







196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
	#endif
], [
	CPPFLAGS="-D_GNU_SOURCE $CPPFLAGS"
	AC_MSG_RESULT(yes)
], [
	AC_MSG_RESULT(no)
])

case "$host_os" in
	solaris*)
		CPPFLAGS="-D__EXTENSIONS__ -D_POSIX_PTHREAD_SEMANTICS $CPPFLAGS"
		;;
esac

objc_runtime="ObjFW runtime"
AC_CHECK_HEADER(objc/objc.h)
AC_MSG_CHECKING(which Objective C runtime to use)
AC_ARG_ENABLE(runtime,
	AS_HELP_STRING([--enable-runtime], [use the included runtime]))
AC_ARG_ENABLE(seluid24,