~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/sqlite/config.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <qglobal.h>
 
2
#include <qconfig.h>
 
3
 
 
4
#ifndef QT_POINTER_SIZE
 
5
# ifdef Q_OS_WIN32
 
6
#  define QT_POINTER_SIZE 4
 
7
# elif Q_OS_WIN64
 
8
#  define QT_POINTER_SIZE 8
 
9
# else
 
10
#  error This platform is unsupported
 
11
# endif
 
12
#endif /* QT_POINTER_SIZE */
 
13
 
 
14
#define SQLITE_PTR_SZ QT_POINTER_SIZE
 
15
 
 
16
#ifndef QT_NO_THREAD
 
17
# define THREADSAFE 1
 
18
#endif
 
19
 
 
20
#ifdef Q_CC_MSVC
 
21
# pragma warning(disable: 4018)
 
22
# pragma warning(disable: 4761)
 
23
#endif
 
24