~ubuntu-branches/ubuntu/oneiric/kdepim/oneiric-updates

« back to all changes in this revision

Viewing changes to kdepim-compat.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-06-28 19:33:24 UTC
  • mfrom: (0.2.13) (0.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20110628193324-8yvjs8sdv9rdoo6c
Tags: 4:4.7.0-0ubuntu1
* New upstream release
  - update install files
  - add missing kdepim-doc package to control file
  - Fix Vcs lines
  - kontact breaks/replaces korganizer << 4:4.6.80
  - tighten the dependency of kdepim-dev on libkdepim4 to fix lintian error

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
  Backward compatibility support.
3
 
  By policy, kdepim must compile against the most recent kdelibs minor release.
4
 
*/
5
 
 
6
 
/* Allow kdepim to build against kdelibs 4.0 */
7
 
#if !defined(KPATH_SEPARATOR)
8
 
#if defined _WIN32 || defined _WIN64
9
 
#define KPATH_SEPARATOR ';'
10
 
#else
11
 
#define KPATH_SEPARATOR ':'
12
 
#endif
13
 
#endif
14
 
 
15
 
#if !defined(KDE_signal)
16
 
#if defined _WIN32 || defined _WIN64
17
 
#define KDE_signal      kdewin32_signal
18
 
#else
19
 
#define KDE_signal      ::signal
20
 
#endif
21
 
#endif