@@ -1,5 +1,9 @@
#import <Foundation/Foundation.h>
-#import "sqlite3.h"
+#if FMDB_SQLITE_STANDALONE
+#import <sqlite3/sqlite3.h>
+#else
+#import <sqlite3.h>
+#endif
#import "FMResultSet.h"
#import "FMDatabasePool.h"
@@ -7,7 +7,11 @@
//
@class FMDatabase;
#ifndef __has_feature // Optional.
#define __has_feature(x) 0 // Compatibility with non-clang compilers.