Comment 0 for bug 82739

Revision history for this message
Matthias (matthiasmueller1974) wrote :

Binary package hint: koffice-dev

Hello,

I tried to compile the CVS version of kmymoney2 with charts enabled:

./configure --enable-charts

and got an error which I could track down to a wrong reference in

/usr/include/kde/kdchart_export.h

The contents is:

#ifndef KDCHART_EXPORT_H
#define KDCHART_EXPORT_H

#include <../../lib/kofficecore/koffice_export.h>

#endif

The file 'koffice_export.h' does not exist at this location and can't be found even with 'apt-file search' at this location.
However, the file exists at '/usr/include/kde/koffice_export.h'.

Modifying '/usr/include/kde/kdchart_export.h' to:
#ifndef KDCHART_EXPORT_H
#define KDCHART_EXPORT_H

#include </usr/include/kde/koffice_export.h>

#endif

solves the problem and kmymoney2 compiles (but crashes after execution, should be an other problem).

Best regards,
Matthias