author | zautrix <zautrix> | 2004-08-08 13:35:34 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-08-08 13:35:34 (UTC) |
commit | 957c13e21844ca75e337fc1c864554dd2240fc78 (patch) (unidiff) | |
tree | 4e2a2a42116639786d2ff00829f3ad26ab0661b3 | |
parent | 75138e84a2271f8929478853151a6ed4a73fb2cc (diff) | |
download | kdepimpi-957c13e21844ca75e337fc1c864554dd2240fc78.zip kdepimpi-957c13e21844ca75e337fc1c864554dd2240fc78.tar.gz kdepimpi-957c13e21844ca75e337fc1c864554dd2240fc78.tar.bz2 |
Fixed win compile problem
-rw-r--r-- | gammu/emb/common/common.pro | 8 | ||||
-rw-r--r-- | libkdepim/kcmconfigs/kcmkdepimconfig.cpp | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gammu/emb/common/common.pro b/gammu/emb/common/common.pro index 7cbcb17..0c68000 100644 --- a/gammu/emb/common/common.pro +++ b/gammu/emb/common/common.pro | |||
@@ -143,7 +143,6 @@ device/bluetoth/affix.c \ | |||
143 | device/bluetoth/bluez.c \ | 143 | device/bluetoth/bluez.c \ |
144 | device/bluetoth/blue_w32.c \ | 144 | device/bluetoth/blue_w32.c \ |
145 | device/bluetoth/bluetoth.c \ | 145 | device/bluetoth/bluetoth.c \ |
146 | device/serial/ser_unx.c \ | ||
147 | device/serial/ser_djg.c \ | 146 | device/serial/ser_djg.c \ |
148 | device/irda/irda.c \ | 147 | device/irda/irda.c \ |
149 | device/devfunc.c \ | 148 | device/devfunc.c \ |
@@ -177,3 +176,10 @@ TARGET = microgammu | |||
177 | DESTDIR = ../../../bin | 176 | DESTDIR = ../../../bin |
178 | OBJECTS_DIR = obj/unix | 177 | OBJECTS_DIR = obj/unix |
179 | MOC_DIR = moc/unix | 178 | MOC_DIR = moc/unix |
179 | |||
180 | unix: { | ||
181 | SOURCES += device/serial/ser_unx.c | ||
182 | } | ||
183 | win32:{ | ||
184 | SOURCES += device/serial/ser_w32.c | ||
185 | } | ||
diff --git a/libkdepim/kcmconfigs/kcmkdepimconfig.cpp b/libkdepim/kcmconfigs/kcmkdepimconfig.cpp index 77a294a..830d5d2 100644 --- a/libkdepim/kcmconfigs/kcmkdepimconfig.cpp +++ b/libkdepim/kcmconfigs/kcmkdepimconfig.cpp | |||
@@ -40,14 +40,14 @@ $Id$ | |||
40 | #include "kcmkdepimconfig.h" | 40 | #include "kcmkdepimconfig.h" |
41 | #include "kprefs.h" | 41 | #include "kprefs.h" |
42 | #include "kpimprefs.h" | 42 | #include "kpimprefs.h" |
43 | 43 | #ifndef _WIN32_ | |
44 | extern "C" | 44 | extern "C" |
45 | { | 45 | { |
46 | KCModule *create_kabconfig( QWidget *parent, const char * ) { | 46 | KCModule *create_kabconfig( QWidget *parent, const char * ) { |
47 | return new KCMKdePimConfig( parent, "kcmkdepimconfig" ); | 47 | return new KCMKdePimConfig( parent, "kcmkdepimconfig" ); |
48 | } | 48 | } |
49 | } | 49 | } |
50 | 50 | #endif | |
51 | KCMKdePimConfig::KCMKdePimConfig( QWidget *parent, const char *name ) | 51 | KCMKdePimConfig::KCMKdePimConfig( QWidget *parent, const char *name ) |
52 | : KCModule( parent, name ) | 52 | : KCModule( parent, name ) |
53 | { | 53 | { |