ObjFW  Check-in [a079453537]

Overview
Comment:configure: Don't force -no-integrated-as anymore
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a079453537bdf62a79bafc4d9f0b5577c870f962408557a98e14941ad4389230
User & Date: js on 2015-05-03 12:44:41
Other Links: manifest | tags
Context
2015-05-03
13:01
OFSystemInfo: iOS has no NSSystemDirectories.h check-in: 3cc8b8db2f user: js tags: trunk
12:44
configure: Don't force -no-integrated-as anymore check-in: a079453537 user: js tags: trunk
11:49
configure: Include pthread.h before pthread_np.h check-in: d1bcf6f643 user: js tags: trunk
Changes

Modified configure.ac from [2418d89907] to [4c2fd70cb1].

107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
107
108
109
110
111
112
113






114
115
116
117
118
119
120







-
-
-
-
-
-







AX_CHECK_COMPILER_FLAGS(-Wshorten-64-to-32 -Werror,
	[OBJCFLAGS="$OBJCFLAGS -Wshorten-64-to-32"])
AX_CHECK_COMPILER_FLAGS(-Wsemicolon-before-method-body -Werror,
	[OBJCFLAGS="$OBJCFLAGS -Wsemicolon-before-method-body"])
AX_CHECK_COMPILER_FLAGS(-Wobjc-property-synthesis -Werror,
	[OBJCFLAGS="$OBJCFLAGS -Wobjc-property-synthesis"])

case "$OBJC" in
	*clang*)
		ASFLAGS="$ASFLAGS -no-integrated-as"
		;;
esac

AC_MSG_CHECKING(whether Objective C compiler supports properties)
AC_TRY_COMPILE([
	@interface Foo
	{
		id bar;
	}