Skip to content

Commit 8bd27bc

Browse files
committed
Mac OS X 10.9 compatibility
Let's update the deploy targets and ensure that newer symbols aren't referenced. Signed-off-by: Stephen Celis <stephen@stephencelis.com>
1 parent 723e19b commit 8bd27bc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

SQLite.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,7 @@
11531153
FRAMEWORK_VERSION = A;
11541154
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
11551155
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
1156-
MACOSX_DEPLOYMENT_TARGET = 10.10;
1156+
MACOSX_DEPLOYMENT_TARGET = 10.9;
11571157
SDKROOT = macosx;
11581158
SKIP_INSTALL = YES;
11591159
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -1173,7 +1173,7 @@
11731173
FRAMEWORK_VERSION = A;
11741174
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
11751175
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
1176-
MACOSX_DEPLOYMENT_TARGET = 10.10;
1176+
MACOSX_DEPLOYMENT_TARGET = 10.9;
11771177
SDKROOT = macosx;
11781178
SKIP_INSTALL = YES;
11791179
};
@@ -1271,7 +1271,7 @@
12711271
FRAMEWORK_VERSION = A;
12721272
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
12731273
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
1274-
MACOSX_DEPLOYMENT_TARGET = 10.11;
1274+
MACOSX_DEPLOYMENT_TARGET = 10.9;
12751275
SDKROOT = macosx;
12761276
SKIP_INSTALL = YES;
12771277
};
@@ -1289,7 +1289,7 @@
12891289
FRAMEWORK_VERSION = A;
12901290
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
12911291
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
1292-
MACOSX_DEPLOYMENT_TARGET = 10.11;
1292+
MACOSX_DEPLOYMENT_TARGET = 10.9;
12931293
SDKROOT = macosx;
12941294
SKIP_INSTALL = YES;
12951295
};

Source/Core/Connection.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public final class Connection {
9191
}
9292

9393
deinit {
94-
sqlite3_close_v2(handle)
94+
sqlite3_close(handle)
9595
}
9696

9797
// MARK: -

0 commit comments

Comments
 (0)