1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-08 03:22:21 +03:00

Handle non-autoconf build correctly with new changes (CVS 4832)

FossilOrigin-Name: e2a9f5f1054f077e4773dd3d2c8f2ce5be118a01
This commit is contained in:
mlcreech
2008-03-06 09:58:50 +00:00
parent 7ff4a45e4e
commit a9e852b667
13 changed files with 55 additions and 48 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
** @(#) $Id: sqliteInt.h,v 1.668 2008/03/06 09:19:00 mlcreech Exp $
** @(#) $Id: sqliteInt.h,v 1.669 2008/03/06 09:58:50 mlcreech Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -21,7 +21,12 @@
** the SQLite source tree.
*/
#ifdef SQLITE_STANDARD_BUILD
#include "common.h"
# include "common.h"
#endif
#ifndef __sqlite3_intptr_defined
/* Fallbacks if doing a standalone build... */
typedef int sqlite3_intptr_t;
#endif
/*