Drop Borland compiler specific code

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/42/head
Michele Calgaro 4 weeks ago
parent 8106c13801
commit 1da72bf7af
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -26,7 +26,7 @@
#if !defined(OS_UNIX) && !defined(OS_TEST) && !defined(OS_OTHER) #if !defined(OS_UNIX) && !defined(OS_TEST) && !defined(OS_OTHER)
# define OS_OTHER 0 # define OS_OTHER 0
# ifndef OS_WIN # ifndef OS_WIN
# if defined(_WIN32) || defined(WIN32) || defined(__CYGWIN__) || defined(__MINGW32__) || defined(__BORLANDC__) # if defined(_WIN32) || defined(WIN32) || defined(__CYGWIN__) || defined(__MINGW32__)
# define OS_WIN 1 # define OS_WIN 1
# define OS_UNIX 0 # define OS_UNIX 0
# else # else

@ -78,7 +78,7 @@ typedef struct sqlite3 sqlite3;
** to do a typedef that for 64-bit integers that depends on what compiler ** to do a typedef that for 64-bit integers that depends on what compiler
** is being used. ** is being used.
*/ */
#if defined(_MSC_VER) || defined(__BORLANDC__) #if defined(_MSC_VER)
typedef __int64 sqlite_int64; typedef __int64 sqlite_int64;
typedef unsigned __int64 sqlite_uint64; typedef unsigned __int64 sqlite_uint64;
#else #else

@ -155,7 +155,7 @@
** cc '-DUINTPTR_TYPE=long long int' ... ** cc '-DUINTPTR_TYPE=long long int' ...
*/ */
#ifndef UINT64_TYPE #ifndef UINT64_TYPE
# if defined(_MSC_VER) || defined(__BORLANDC__) # if defined(_MSC_VER)
# define UINT64_TYPE unsigned __int64 # define UINT64_TYPE unsigned __int64
# else # else
# define UINT64_TYPE unsigned long long int # define UINT64_TYPE unsigned long long int

Loading…
Cancel
Save