ObjFW  Check-in [6d8f5538f0]

Overview
Comment:Rename libobjfw-bridge to libobjfw_bridge

This is to have it align with the header name and framework name.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 6d8f5538f04fe82fcec046152e208f194201df5c7a41824437563e0e871bf9dc
User & Date: js on 2017-10-15 16:09:15
Other Links: manifest | tags
Context
2017-10-15
19:07
Update buildsys check-in: 7fe045a19e user: js tags: trunk
16:09
Rename libobjfw-bridge to libobjfw_bridge check-in: 6d8f5538f0 user: js tags: trunk
15:35
Set the iOS target version to 9.0 check-in: 6697440682 user: js tags: trunk
Changes

Modified configure.ac from [4d72ed7d39] to [59fbae4388].

1243
1244
1245
1246
1247
1248
1249
1250

1251
1252
1253
1254

1255
1256
1257
1258
1259
1260
1261
1243
1244
1245
1246
1247
1248
1249

1250
1251
1252
1253

1254
1255
1256
1257
1258
1259
1260
1261







-
+



-
+







AS_IF([test x"$objc_runtime" = x"Apple runtime"], [
	AC_CHECK_HEADER(Foundation/NSObject.h, [
		AC_SUBST(FOUNDATION_COMPAT_M, "foundation-compat.m")
		AC_SUBST(BRIDGE, "bridge")

		AS_IF([test x"$enable_shared" != x"no"], [
			AC_SUBST(OBJFW_BRIDGE_SHARED_LIB,
				"${LIB_PREFIX}objfw-bridge${LIB_SUFFIX}")
				"${LIB_PREFIX}objfw_bridge${LIB_SUFFIX}")
		])
		AS_IF([test x"$enable_static" = x"yes" \
		    -o x"$enable_shared" = x"no"], [
			AC_SUBST(OBJFW_BRIDGE_STATIC_LIB, "libobjfw-bridge.a")
			AC_SUBST(OBJFW_BRIDGE_STATIC_LIB, "libobjfw_bridge.a")
		])
	])
])

dnl This needs to be after all other header checks, as they include unistd.h,
dnl which in old glibc versions uses __block. This is worked around in the code
dnl by providing a wrapper for unistd.h which takes care of this.