summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 6db3492..ec5f386 100644
--- a/setup.py
+++ b/setup.py
@@ -176,6 +176,8 @@ class MyBuildExt(build_ext):
("SQLITE_HAS_CODEC", "1"))
ext.define_macros.append(
("SQLITE_TEMP_STORE", "2"))
+ ext.define_macros.append(
+ ("HAVE_USLEEP", "1"))
ext.sources.append(os.path.join(AMALGAMATION_ROOT, "sqlite3.c"))
ext.include_dirs.append(AMALGAMATION_ROOT)
@@ -330,7 +332,7 @@ def get_setup_args():
PYSQLITE_VERSION += "-%s" % PATCH_VERSION
# Need to bump minor version, patch handled badly.
- PYSQLCIPHER_VERSION = "2.6.4"
+ PYSQLCIPHER_VERSION = "2.6.5"
setup_args = dict(
name="pysqlcipher",