krop's commit fixes my problem in a better way, reverting
[kdepim.git] / kdepim-compat.h
blobec39225a3add8e02dc6887ec980eca57b2be089c
1 /*
2 Backward compatibility support.
3 By policy, kdepim must compile against the most recent kdelibs minor release.
4 */
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
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