build fix
[LibreOffice.git] / connectivity / source / drivers / kab / KDEInit.h
blobd14447b34306f9e40a5345b69e0e7a42f3a517e7
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_KAB_KDEINIT_H
21 #define INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_KAB_KDEINIT_H
23 // the address book driver's version
24 #define KAB_DRIVER_VERSION "0.2"
25 #define KAB_DRIVER_VERSION_MAJOR 0
26 #define KAB_DRIVER_VERSION_MINOR 2
28 #include <config_vclplug.h>
30 #if ENABLE_TDE
32 // the minimum TDE version which is required at runtime
33 #define MIN_KDE_VERSION_MAJOR 14
34 #define MIN_KDE_VERSION_MINOR 0
36 #define MAX_KDE_VERSION_MAJOR 255
37 #define MAX_KDE_VERSION_MINOR 255
39 #else // ENABLE_TDE
41 // the minimum KDE version which is required at runtime
42 #define MIN_KDE_VERSION_MAJOR 3
43 #define MIN_KDE_VERSION_MINOR 2
45 #define MAX_KDE_VERSION_MAJOR 3
46 #define MAX_KDE_VERSION_MINOR 6
48 #endif // ENABLE_TDE
51 #endif // INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_KAB_KDEINIT_H
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */