aboutsummaryrefslogtreecommitdiff
path: root/src/os.h
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2013-11-26 01:00:31 +0000
committermistachkin <mistachkin@noemail.net>2013-11-26 01:00:31 +0000
commitf74b9e0965bdf30ca8911ca28a5f7ad6e11d6b22 (patch)
tree943bc22c010b262a8d009f8e194cdcba29394a4f /src/os.h
parent9598ae2c11591b356fe114d049febd541146b3e8 (diff)
downloadsqlite-f74b9e0965bdf30ca8911ca28a5f7ad6e11d6b22.tar.gz
sqlite-f74b9e0965bdf30ca8911ca28a5f7ad6e11d6b22.zip
Further work on Windows header file reform.
FossilOrigin-Name: 540f5525160b516de282136ca77f909115a51630
Diffstat (limited to 'src/os.h')
-rw-r--r--src/os.h36
1 files changed, 3 insertions, 33 deletions
diff --git a/src/os.h b/src/os.h
index 1d438d22c..3920a62ee 100644
--- a/src/os.h
+++ b/src/os.h
@@ -21,40 +21,10 @@
#define _SQLITE_OS_H_
/*
-** Figure out if we are dealing with Unix, Windows, or some other
-** operating system. After the following block of preprocess macros,
-** all of SQLITE_OS_UNIX, SQLITE_OS_WIN, and SQLITE_OS_OTHER
-** will defined to either 1 or 0. One of the four will be 1. The other
-** three will be 0.
+** Attempt to automatically detect the operating system and setup the
+** necessary pre-processor macros for it.
*/
-#if defined(SQLITE_OS_OTHER)
-# if SQLITE_OS_OTHER==1
-# undef SQLITE_OS_UNIX
-# define SQLITE_OS_UNIX 0
-# undef SQLITE_OS_WIN
-# define SQLITE_OS_WIN 0
-# else
-# undef SQLITE_OS_OTHER
-# endif
-#endif
-#if !defined(SQLITE_OS_UNIX) && !defined(SQLITE_OS_OTHER)
-# define SQLITE_OS_OTHER 0
-# ifndef SQLITE_OS_WIN
-# if defined(_WIN32) || defined(WIN32) || defined(__CYGWIN__) || defined(__MINGW32__) || defined(__BORLANDC__)
-# define SQLITE_OS_WIN 1
-# define SQLITE_OS_UNIX 0
-# else
-# define SQLITE_OS_WIN 0
-# define SQLITE_OS_UNIX 1
-# endif
-# else
-# define SQLITE_OS_UNIX 0
-# endif
-#else
-# ifndef SQLITE_OS_WIN
-# define SQLITE_OS_WIN 0
-# endif
-#endif
+#include "os_setup.h"
/* If the SET_FULLSYNC macro is not defined above, then make it
** a no-op