~ubuntu-branches/debian/sid/calligraplan/sid

« back to all changes in this revision

Viewing changes to src/config.h.cmake

  • Committer: Package Import Robot
  • Author(s): Pino Toscano
  • Date: 2018-02-01 18:20:19 UTC
  • Revision ID: package-import@ubuntu.com-20180201182019-1qo7qaim5wejm5k9
Tags: upstream-3.1.0
ImportĀ upstreamĀ versionĀ 3.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Check windows
 
2
#ifdef Q_OS_WIN
 
3
   #ifdef _WIN64
 
4
     #define ENV64BIT
 
5
  #else
 
6
    #define ENV32BIT
 
7
  #endif
 
8
#endif
 
9
 
 
10
// Check GCC
 
11
#if __GNUC__
 
12
  #if defined (__x86_64__) || defined (__ppc64__)
 
13
    #define ENV64BIT
 
14
  #else
 
15
    #define ENV32BIT
 
16
  #endif
 
17
#endif
 
18
 
 
19
 
 
20
/* Number of bits in a file offset, on hosts where this is settable. */
 
21
#define _FILE_OFFSET_BITS 64
 
22
 
 
23
/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
 
24
/* #undef _LARGEFILE_SOURCE */
 
25
 
 
26
/* Define for large files, on AIX-style hosts. */
 
27
/* #undef _LARGE_FILES */
 
28
 
 
29
/* Defines if we use KActivities */
 
30
#cmakedefine HAVE_KACTIVITIES 1
 
31
 
 
32
/* Defines if the old plugin metadata for mimetypes is used */
 
33
#cmakedefine CALLIGRA_OLD_PLUGIN_METADATA 1
 
34
 
 
35
/* Defines if KCalCore version with QDateTime-based API is available */
 
36
#cmakedefine HAVE_QDATETIME_KCALCORE 1
 
37
 
 
38
/* Defines Plan version */
 
39
#cmakedefine PLAN_VERSION_STRING "${PLAN_VERSION_STRING}"
 
40
 
 
41
/* Defines Plan year */
 
42
#cmakedefine PLAN_YEAR "${PLAN_YEAR}"
 
43
 
 
44
/* Defines Plan release status */
 
45
#cmakedefine PLAN_ALPHA "${PLAN_ALPHA}"
 
46
#cmakedefine PLAN_BETA "${PLAN_BETA}"
 
47
#cmakedefine PLAN_RC "${PLAN_RC}"
 
48
 
 
49
/* Defines use of KReport */
 
50
#cmakedefine PLAN_USE_KREPORT 1