From 4623e6a111193e46a5b86319d3a505f814f024f2 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Thu, 30 May 2013 04:57:06 +0900 Subject: initial debian files * do not use amalgamation builder * add include dir for libsqlcipher * add libsqlcipher-dev as build-dep --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index dff0c64..ac1a3cd 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ sqlite = "sqlite" PYSQLITE_EXPERIMENTAL = False #DEV_VERSION = None -DEV_VERSION = "1" +DEV_VERSION = "02" sources = ["src/module.c", "src/connection.c", "src/cursor.c", "src/cache.c", "src/microprotocols.c", "src/prepare_protocol.c", "src/statement.c", @@ -146,6 +146,7 @@ class LibSQLCipherBuilder(build_ext): description = ("Build C extension linking against libsqlcipher library.") def build_extension(self, ext): + ext.extra_compile_args.append("-I/usr/include/sqlcipher/") ext.extra_link_args.append("-lsqlcipher") build_ext.build_extension(self, ext) -- cgit v1.2.3