Summary: | kdeaddons-3.3.2: "make check" fails in konq-plugins/fsview | ||
---|---|---|---|
Product: | [Applications] konqueror | Reporter: | Sascha Silbe <Sascha-bugs.kde.org> |
Component: | fsview | Assignee: | Josef Weidendorfer <josef.weidendorfer> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | greg_g |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Sascha Silbe
2005-01-23 02:12:09 UTC
Fixed. Perhaps better would be to comment out the check target lines in Makefile.am. Could you please attach the patch so Gentoo can include it for the 3.3.2 ebuild? It's only a 1-liner. The changes for scan.cpp fix a warning only: --- kdeaddons/konq-plugins/fsview/scan.h 2004/08/26 14:49:21 1.3 +++ kdeaddons/konq-plugins/fsview/scan.h 2005/01/23 21:16:30 1.4 @@ -26,6 +26,7 @@ #define USE_64BIT_SIZES 1 #if USE_64BIT_SIZES +#include <qglobal.h> typedef Q_INT64 FSViewSize; #else typedef QFile::Offset FSViewSize; --- kdeaddons/konq-plugins/fsview/scantest.cpp 2004/03/01 22:13:14 1.2 +++ kdeaddons/konq-plugins/fsview/scantest.cpp 2005/01/23 21:16:30 1.3 @@ -33,9 +33,14 @@ void sizeChanged(ScanDir* d) { - printf("Change in %s (Dirs %d, Files %d, Size %u)\n", + printf("Change in %s: Dirs %d, Files %d", d->name().latin1(), - d->dirCount(), d->fileCount(), d->size()); + d->dirCount(), d->fileCount()); +#if USE_64BIT_SIZES + printf("Size %llu\n", d->size()); +#else + printf("Size %u\n", d->size()); +#endif } void scanFinished(ScanDir* d) |