From 2c81407fbf68a2cb42edc599ccfd050987b8fcbe Mon Sep 17 00:00:00 2001 From: ennewalker Date: Thu, 26 Feb 2009 00:46:15 +0000 Subject: Switch to using 32-bit types instead of 64-bit types for sqlite. (dpeg--this should fix your compilation issues.) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9225 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/sqldbm.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'crawl-ref/source/sqldbm.h') diff --git a/crawl-ref/source/sqldbm.h b/crawl-ref/source/sqldbm.h index 07a03550d1..fc7ea5393f 100644 --- a/crawl-ref/source/sqldbm.h +++ b/crawl-ref/source/sqldbm.h @@ -16,13 +16,9 @@ #include #include -#if defined(DOS) || defined(WIN32CONSOLE) #define SQLITE_INT64_TYPE int #define SQLITE_UINT64_TYPE unsigned int -#else -#define SQLITE_INT64_TYPE int64_t -#define SQLITE_UINT64_TYPE uint64_t -#endif + #include #include -- cgit v1.2.3-54-g00ecf