~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to core/digikam/utils/config-digikam.h.cmake

  • Committer: Package Import Robot
  • Author(s): Felix Geyer, Rohan Garg, Philip Muškovac, Felix Geyer
  • Date: 2011-09-23 18:18:55 UTC
  • mfrom: (1.2.36 upstream)
  • Revision ID: package-import@ubuntu.com-20110923181855-ifs67wxkugshev9k
Tags: 2:2.1.1-0ubuntu1
[ Rohan Garg ]
* New upstream release (LP: #834190)
  - debian/control
    + Build with libqtwebkit-dev
 - debian/kipi-plugins-common
    + Install libkvkontakte required by kipi-plugins
 - debian/digikam
    + Install panoramagui

[ Philip Muškovac ]
* New upstream release
  - debian/control:
    + Add libcv-dev, libcvaux-dev, libhighgui-dev, libboost-graph1.46-dev,
      libksane-dev, libxml2-dev, libxslt-dev, libqt4-opengl-dev, libqjson-dev,
      libgpod-dev and libqca2-dev to build-deps
    + Add packages for kipi-plugins, libmediawiki, libkface, libkgeomap and
      libkvkontakte
  - debian/rules:
    + Don't build with gphoto2 since it doesn't build with it.
  - Add kubuntu_fix_test_linking.diff to fix linking of the dngconverter test
  - update install files
  - update kubuntu_01_mysqld_executable_name.diff for new cmake layout
    and rename to kubuntu_mysqld_executable_name.diff
* Fix typo in digikam-data description (LP: #804894)
* Fix Vcs links

[ Felix Geyer ]
* Move library data files to the new packages libkface-data, libkgeomap-data
  and libkvkontakte-data.
* Override version of the embedded library packages to 1.0~digikam<version>.
* Exclude the library packages from digikam-dbg to prevent file conflicts in
  the future.
* Call dh_install with --list-missing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ============================================================
 
2
 *
 
3
 * This file is a part of digiKam project
 
4
 * http://www.digikam.org
 
5
 *
 
6
 * Date        : 2009-08-03
 
7
 * Description : digiKam config header
 
8
 *
 
9
 * Copyright (C) 2009-2011 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
10
 *
 
11
 * This program is free software; you can redistribute it
 
12
 * and/or modify it under the terms of the GNU General
 
13
 * Public License as published by the Free Software Foundation;
 
14
 * either version 2, or (at your option)
 
15
 * any later version.
 
16
 *
 
17
 * This program is distributed in the hope that it will be useful,
 
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
 * GNU General Public License for more details.
 
21
 *
 
22
 * ============================================================ */
 
23
 
 
24
#ifndef CONFIG_DIGIKAM_H
 
25
#define CONFIG_DIGIKAM_H
 
26
 
 
27
/* Define to 1 if you have KDEPIM shared library installed */
 
28
#cmakedefine HAVE_KDEPIMLIBS 1
 
29
 
 
30
/* Define to 1 if Glib2 shared library is installed */
 
31
#cmakedefine HAVE_GLIB2 1
 
32
 
 
33
/* Define to 1 if an external liblqr-1 shared library have been found */
 
34
#cmakedefine USE_EXT_LIBLQR-1 1
 
35
 
 
36
/* Define to 1 if an external libpgf shared library have been found */
 
37
#cmakedefine USE_EXT_LIBPGF 1
 
38
 
 
39
/* Define to 1 if an external libclapack shared library have been found */
 
40
#cmakedefine USE_EXT_LIBCLAPACK 1
 
41
 
 
42
/* Define to 1 if an external lensfun shared library have been found */
 
43
#cmakedefine USE_EXT_LIBLENSFUN 1
 
44
 
 
45
/* Define to 1 if GPhoto2 shared library is installed */
 
46
#cmakedefine HAVE_GPHOTO2 1
 
47
 
 
48
/* Define to 1 if thumbnails database is used */
 
49
#cmakedefine USE_THUMBS_DB 1
 
50
 
 
51
/* Define to 1 if script interface is used */
 
52
#cmakedefine USE_SCRIPT_IFACE 1
 
53
 
 
54
/* Define to 1 if advanced debug messages are enabled */
 
55
#cmakedefine USE_ADVANCEDDEBUGMSG 1
 
56
 
 
57
/* Define to 1 if you have Nepomuk shared libraries installed */
 
58
#cmakedefine HAVE_NEPOMUK 1
 
59
 
 
60
/* Define to 1 if we know how to start mysqld */
 
61
#cmakedefine HAVE_INTERNALMYSQL 1
 
62
 
 
63
#ifdef USE_EXT_LIBPGF
 
64
#define PGFCodecVersionID 0x${PGF_CODEC_VERSION_ID}
 
65
#endif
 
66
 
 
67
#define LIBEXEC_INSTALL_DIR "${LIBEXEC_INSTALL_DIR}"
 
68
 
 
69
/*
 
70
  Disable indeep warnings from Visual Studio C++ 2008 (9.0)
 
71
*/
 
72
#if defined(_MSC_VER)
 
73
// To disable warnings about no suitable definition provided for explicit template instantiation request.
 
74
#pragma warning(disable : 4661)
 
75
// To disable warnings about deprecated POSIX methods().
 
76
#pragma warning(disable : 4996)
 
77
// To disable warnings about qualifier applied to reference type ignored.
 
78
#pragma warning(disable : 4181)
 
79
#endif
 
80
 
 
81
#endif /* CONFIG_DIGIKAM_H */