~ubuntu-branches/ubuntu/trusty/kdepimlibs/trusty

« back to all changes in this revision

Viewing changes to kholidays/kholidays_export.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-11-23 17:36:44 UTC
  • mfrom: (1.1.102)
  • Revision ID: package-import@ubuntu.com-20131123173644-p5ow94192ezsny8g
Tags: 4:4.11.80-0ubuntu1
[ Rohan Garg ]
* New upstream beta release
  - Bump akonadi requirement to 1.10.45
  - Update install files
  - Update symbols

[ Philip Muškovac ]
* kdepimlibs-dev/-dbg breaks/replaces kdepim-runtime/-dbg (<< 4:4.11.80)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
  This file is part of the kholidays library.
3
 
 
4
 
  Copyright (C) 2007 David Faure <faure@kde.org>
5
 
 
6
 
  This library is free software; you can redistribute it and/or
7
 
  modify it under the terms of the GNU Library General Public
8
 
  License as published by the Free Software Foundation; either
9
 
  version 2 of the License, or (at your option) any later version.
10
 
 
11
 
  This library is distributed in the hope that it will be useful,
12
 
  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
  Library General Public License for more details.
15
 
 
16
 
  You should have received a copy of the GNU Library General Public License
17
 
  along with this library; see the file COPYING.LIB.  If not, write to
18
 
  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
 
  Boston, MA 02110-1301, USA.
20
 
*/
21
 
 
22
 
#ifndef KHOLIDAYS_EXPORT_H
23
 
#define KHOLIDAYS_EXPORT_H
24
 
 
25
 
/* needed for KDE_EXPORT and KDE_IMPORT macros */
26
 
#include <kdemacros.h>
27
 
 
28
 
#ifndef KHOLIDAYS_EXPORT
29
 
# if defined(KDEPIM_STATIC_LIBS)
30
 
   /* No export/import for static libraries */
31
 
#  define KHOLIDAYS_EXPORT
32
 
# elif defined(MAKE_KHOLIDAYS_LIB)
33
 
   /* We are building this library */
34
 
#  define KHOLIDAYS_EXPORT KDE_EXPORT
35
 
# else
36
 
   /* We are using this library */
37
 
#  define KHOLIDAYS_EXPORT KDE_IMPORT
38
 
# endif
39
 
#endif
40
 
 
41
 
# ifndef KHOLIDAYS_EXPORT_DEPRECATED
42
 
#  define KHOLIDAYS_EXPORT_DEPRECATED KDE_DEPRECATED KHOLIDAYS_EXPORT
43
 
# endif
44
 
 
45
 
#endif