Overview
Comment: | Increase library major version |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5a7d40aced7cbeb5c6786beb3e4a64e7 |
User & Date: | js on 2015-08-22 12:10:33 |
Other Links: | manifest | tags |
Context
2015-08-22
| ||
17:10 | Documentation fixes check-in: 4a95a92e9d user: js tags: trunk | |
12:10 | Increase library major version check-in: 5a7d40aced user: js tags: trunk | |
11:56 | configure.ac: Fix AC_CHECK_HEADER(S) confusion check-in: 975fa1d8f3 user: js tags: trunk | |
Changes
Modified ObjFW.xcodeproj/project.pbxproj from [5b75f34ca3] to [d55d0fc0b7].
︙ | ︙ | |||
2389 2390 2391 2392 2393 2394 2395 | PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Release; }; 4B3D23871337FBC800DD29B8 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { | | | | | | 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 | PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Release; }; 4B3D23871337FBC800DD29B8 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { DYLIB_COMPATIBILITY_VERSION = 8; DYLIB_CURRENT_VERSION = 8; FRAMEWORK_VERSION = A; INFOPLIST_FILE = "$(SRCROOT)/support/Info.plist"; OTHER_LDFLAGS = ( "-Wl,-reexport-lobjc", "-lobjc", "-lm", ); PRODUCT_BUNDLE_IDENTIFIER = org.webkeks.objfw; PRODUCT_NAME = "$(TARGET_NAME)"; WRAPPER_EXTENSION = framework; }; name = Debug; }; 4B3D23881337FBC800DD29B8 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { DYLIB_COMPATIBILITY_VERSION = 8; DYLIB_CURRENT_VERSION = 8; FRAMEWORK_VERSION = A; INFOPLIST_FILE = "$(SRCROOT)/support/Info.plist"; OTHER_LDFLAGS = ( "-Wl,-reexport-lobjc", "-lobjc", "-lm", ); |
︙ | ︙ |
Modified extra.mk.in from [0ac12cacfe] to [e68111f1bd].
1 2 3 | OBJFW_SHARED_LIB = @OBJFW_SHARED_LIB@ OBJFW_STATIC_LIB = @OBJFW_STATIC_LIB@ # When changing: Be sure to also change these in the Xcode project! | | | 1 2 3 4 5 6 7 8 9 10 11 | OBJFW_SHARED_LIB = @OBJFW_SHARED_LIB@ OBJFW_STATIC_LIB = @OBJFW_STATIC_LIB@ # When changing: Be sure to also change these in the Xcode project! OBJFW_LIB_MAJOR = 8 OBJFW_LIB_MINOR = 0 OBJFW_LIB_MAJOR_MINOR = ${OBJFW_LIB_MAJOR}.${OBJFW_LIB_MINOR} OBJFW_BRIDGE_SHARED_LIB = @OBJFW_BRIDGE_SHARED_LIB@ OBJFW_BRIDGE_STATIC_LIB = @OBJFW_BRIDGE_STATIC_LIB@ ATOMIC_H = @ATOMIC_H@ |
︙ | ︙ |