author | zautrix <zautrix> | 2004-10-17 20:33:08 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-17 20:33:08 (UTC) |
commit | 50470fdeb0ed62f05ff6780607cc30a8e84ef5b1 (patch) (side-by-side diff) | |
tree | 87fbffa1db9d979dbe9c2e018cd2bdc5d833823f | |
parent | 4220d587eb43d4117e5d5a8a8f0cb6e8381b5fbe (diff) | |
download | kdepimpi-50470fdeb0ed62f05ff6780607cc30a8e84ef5b1.zip kdepimpi-50470fdeb0ed62f05ff6780607cc30a8e84ef5b1.tar.gz kdepimpi-50470fdeb0ed62f05ff6780607cc30a8e84ef5b1.tar.bz2 |
compile fixes
-rw-r--r-- | Makefile | 16 | ||||
-rw-r--r-- | Makefile.Embedded | 16 | ||||
-rw-r--r-- | libkdepim/ksyncmanager.cpp | 4 | ||||
-rw-r--r-- | version | 2 |
4 files changed, 21 insertions, 17 deletions
@@ -228,16 +228,16 @@ dist: cd ..; tar czf kdepim.src.tar.gz --exclude=obj --exclude=moc --exclude=CVS --exclude=Makefilezaurus --exclude=Makefileqtopia kdepim - ./mkipks kmicrokdelibs.control - ./mkipks korganizer.control - ./mkipks kaddressbook.control + mkipks kmicrokdelibs.control + mkipks korganizer.control + mkipks kaddressbook.control ifndef BUILD_NO_MICROMAIL - ./mkipks kopiemail.control + mkipks kopiemail.control endif - ./mkipks korganizer-alarm.control + mkipks korganizer-alarm.control ifndef BUILD_NO_GAMMU - ./mkipks phoneaccess.control + mkipks phoneaccess.control endif ifndef BUILD_NO_PWMANAGER - ./mkipks pwmanager.control + mkipks pwmanager.control endif - ./mkipks pim_TAB_icon.control + mkipks pim_TAB_icon.control diff --git a/Makefile.Embedded b/Makefile.Embedded index 6a8521f..84f909e 100644 --- a/Makefile.Embedded +++ b/Makefile.Embedded @@ -228,16 +228,16 @@ dist: cd ..; tar czf kdepim.src.tar.gz --exclude=obj --exclude=moc --exclude=CVS --exclude=Makefilezaurus --exclude=Makefileqtopia kdepim - ./mkipks kmicrokdelibs.control - ./mkipks korganizer.control - ./mkipks kaddressbook.control + mkipks kmicrokdelibs.control + mkipks korganizer.control + mkipks kaddressbook.control ifndef BUILD_NO_MICROMAIL - ./mkipks kopiemail.control + mkipks kopiemail.control endif - ./mkipks korganizer-alarm.control + mkipks korganizer-alarm.control ifndef BUILD_NO_GAMMU - ./mkipks phoneaccess.control + mkipks phoneaccess.control endif ifndef BUILD_NO_PWMANAGER - ./mkipks pwmanager.control + mkipks pwmanager.control endif - ./mkipks pim_TAB_icon.control + mkipks pim_TAB_icon.control diff --git a/libkdepim/ksyncmanager.cpp b/libkdepim/ksyncmanager.cpp index 8851097..40d8e47 100644 --- a/libkdepim/ksyncmanager.cpp +++ b/libkdepim/ksyncmanager.cpp @@ -783,3 +783,7 @@ void KSyncManager::syncKDE() { +#ifdef DESKTOP_VERSION QString command = qApp->applicationDirPath () + "/kdecaldump"; +#else + QString command = "kdecaldump"; +#endif if ( ! QFile::exists ( command ) ) @@ -1 +1 @@ -version = "1.9.7"; +version = "1.9.8"; |