Re: KDE_EXPORT is needed

2012-07-04 Thread Stephen Kelly
Patrick Spendrin wrote: > One issue I have found was that KDE_EXPORT and KDE_IMPORT went missing. > > KDE_EXPORT and KDE_IMPORT are needed e.g. if you want to export a > function from a plugin (you never want to import it) meaning that it is > needed for K_EXPORT_PLUGIN to work properly. In that

Re: KDE_EXPORT is needed

2012-07-04 Thread Stephen Kelly
Patrick Spendrin wrote: > One issue I have found was that KDE_EXPORT and KDE_IMPORT went missing. > > KDE_EXPORT and KDE_IMPORT are needed e.g. if you want to export a > function from a plugin (you never want to import it) Sounds like something that should be changed in generate_export_header in

Re: Windows patches

2012-07-04 Thread Stephen Kelly
Patrick Spendrin wrote: > Hi everybody, > > I am now half way through building kdelibs frameworks branch on windows. > > Some things I want to mention: > - most unittests are console applications on Windows and so they need to > be linked against the stub library qtmain.lib. I committed a patch

KDE_EXPORT is needed

2012-07-04 Thread Patrick Spendrin
One issue I have found was that KDE_EXPORT and KDE_IMPORT went missing. KDE_EXPORT and KDE_IMPORT are needed e.g. if you want to export a function from a plugin (you never want to import it) meaning that it is needed for K_EXPORT_PLUGIN to work properly. In that special case we could use Q_DECL_EX

Windows patches

2012-07-04 Thread Patrick Spendrin
Hi everybody, I am now half way through building kdelibs frameworks branch on windows. Some things I want to mention: - most unittests are console applications on Windows and so they need to be linked against the stub library qtmain.lib. I committed a patch which does this already for quite a lot