From 3d6c6f934500002267363041852b31a7a4e32159 Mon Sep 17 00:00:00 2001 From: Stéphane Graber Date: Wed, 11 Mar 2015 15:18:10 -0400 Subject: Rename sqlite3.{c,h} to sqlite3-binding.{c,h} MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes the problem where when building with gccgo, sqlite3.c is overwritten, leading to a build failure. An alternative would have been to move sqlite3*.{c,h} to a subdirectory, but that seems to confuse the linker a fair bit and would just swap one implementation-dependent issue for another. Closes #20 Signed-off-by: Stéphane Graber --- sqlite3ext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sqlite3ext.h') diff --git a/sqlite3ext.h b/sqlite3ext.h index ecf93f6..7cc58b6 100644 --- a/sqlite3ext.h +++ b/sqlite3ext.h @@ -17,7 +17,7 @@ */ #ifndef _SQLITE3EXT_H_ #define _SQLITE3EXT_H_ -#include "sqlite3.h" +#include "sqlite3-binding.h" typedef struct sqlite3_api_routines sqlite3_api_routines; -- cgit v1.2.3