aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2010-03-25- Phonon 4.3.80 or newer is requiredAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=1107539
2010-03-25-some work on the documentationAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=1107538
2010-03-22-putting quotes around the input for the string() functions never hurtsAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=1106449
2010-03-21Fix typo in KDE4Macros.cmake::KDE4_INSTALL_AUTH_HELPER_FILES.Modestas Vainius
The name of the variable is KDE4_AUTH_HELPER_BACKEND_NAME rather than KAUTH_HELPER_BACKEND_NAME. CCMAIL: drf54321@gmail.com svn path=/trunk/KDE/kdelibs/; revision=1105719
2010-03-19-all lower-caseAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=1105272
2010-03-14-add warning message if the version is unknown but a minimum version was ↵Alexander Neundorf
specified Alex svn path=/trunk/KDE/kdelibs/; revision=1103373
2010-03-14-fix breakage, ignore those modules which don't set a FOO_VERSION variable ↵Alexander Neundorf
for now Alex svn path=/trunk/KDE/kdelibs/; revision=1103360
2010-03-14-unbreak: when using HINTS, NO_DEFAULT_PATHS etc. should not be used anymore...Alexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=1103254
2010-03-14-install the copy of FindPackageHandleStandardArgs.cmakeAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=1103191
2010-03-14-add a copy of FindPackageHandleStandardArgs, which adds checking the ↵Alexander Neundorf
version numbers, so you get this automatically in all modules which use find_package_handle_standard_args() Alex svn path=/trunk/KDE/kdelibs/; revision=1103184
2010-03-14-simplify FindPhonon.cmakeAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=1103155
2010-03-07-fix build on OSX with OpenGL (don't turn "-framework foo" into ↵Alexander Neundorf
"-framework;-lfoo" Alex svn path=/trunk/KDE/kdelibs/; revision=1100585
2010-03-05Allow macro_optional_add_subdirectory to work with CMake 2.8 inJonathan Marten
the case where a directory exists but is empty, by checking that it contains a CMakeLists.txt file before adding it. OK from kde-buildsystem list at http://lists.kde.org/?t=126772053200003&r=1&w=2 svn path=/trunk/KDE/kdelibs/; revision=1099212
2010-03-05reduce few columns, so it gives less issues in manpages generationPino Toscano
svn path=/trunk/KDE/kdelibs/; revision=1099156
2010-03-03Look at the correct variable to determine if a compile test succeeded. AfterAndreas Hartmetz
try_compile(_compile_result, ...) do if(NOT _compile_result) instead of if(NOT _run_result). Looks like old code wasn't changed when it should. This fixes the build. CCMAIL: harry@kdevelop.org svn path=/trunk/KDE/kdelibs/; revision=1098559
2010-03-03Change the visibility checking test from try_run to try_compile to makeHarald Fernengel
it work when cross-compiling. svn path=/trunk/KDE/kdelibs/; revision=1098490
2010-02-20Bring Cross compilation to kdelibsHarald Fernengel
With these changes, I was able to cross-compile kdelibs for Maemo 5 using MADDE. See http://techbase.kde.org/Projects/KDE_on_Maemo/MADDE for more details. CCMAIL: kde-maemo@kde.org svn path=/trunk/KDE/kdelibs/; revision=1093415
2010-02-17Committing the second part of a previous patch to KAuth (the static fake ↵Dario Freddi
backends one) which I completely forgot. Sorry. svn path=/trunk/KDE/kdelibs/; revision=1091811
2010-02-16Add the support of QtDeclarative module in Qt 4.7. Green flag inAlexis Ménard
kde-core-devel. svn path=/trunk/KDE/kdelibs/; revision=1091507
2010-02-154.4 => 4.5Allen Winter
beware! this changes the so versioning svn path=/trunk/KDE/kdelibs/; revision=1090682
2010-02-03KDE4_SERIALIZE_TOOL - set to icerun (with icecream 0.9.5+) toLuboš Luňák
serialize meinproc4 runs when doing large parallel builds. svn path=/trunk/KDE/kdelibs/; revision=1084602
2010-01-24CCMAIL: kde-packager@kde.orgDario Freddi
Fixing some stuff for macros in KAuth to make it behave correctly without Find* files. Also changing KAUTH_BACKEND to KDE4_AUTH_BACKEND_NAME for consistency. Please switch your -DKAUTH_BACKEND=... to -DKDE4_AUTH_BACKEND_NAME=..., if any, soon. I'm backporting this commit now. svn path=/trunk/KDE/kdelibs/; revision=1079648
2010-01-20forward port fixPatrick Spendrin
svn path=/trunk/KDE/kdelibs/; revision=1077671
2010-01-18-comment debug outputAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=1076822
2010-01-18-fix two remaining compat. issues found by the cmake devs:Alexander Neundorf
-- the imported targets did not work with Qt installed as frameworks on OSX -- if a project exported its libraries, and these libraries depend on Qt libs, but the installed FooConfig.cmake files do not load FindQt4.cmake, this would result in unknown targets "Qt4::QtCore" etc. So now there is a switch to enable the imported targets explicitely (what we do for KDE) Alex svn path=/trunk/KDE/kdelibs/; revision=1076819
2010-01-17-remove commented codeAlexander Neundorf
-add a comment that the name of the imported targets must not change Alex svn path=/trunk/KDE/kdelibs/; revision=1076155
2010-01-13-fix the temporary source incompatiblity introduced in rev 1070849Alexander Neundorf
(when a project first did a find_package(Qt4) with a FindQt4.cmake not from kdelibs, followed by a find_package(KDE4), the imported targets for the Qt library used in the exported targets file of kdelibs and created in kdelibs FindQt4.cmake did not exist, so it did not link) Now when doing a find_package(KDE4) always the FindQt4.cmake in the same directory is executed, and only does nothing if also the imported Qt targets already exist. This should fix rekonq, quassel, amarok, etc. Please let me know if it still does not work. Please also let me know if it works now. Thanks Alex CCMAIL: sputnick@quassel-irc.org CCMAIL: bbeschow@cs.tu-berlin.de svn path=/trunk/KDE/kdelibs/; revision=1074319
2010-01-13-don't try to mark non-cache variables as advancedAlexander Neundorf
-mark VERSION_FILE as advanced (part of the patch from Dario) Alex CCMAIL: drf54321@gmail.com svn path=/trunk/KDE/kdelibs/; revision=1074260
2010-01-13-break mark_as_advanced into multiple lines to improve readability (also for ↵Alexander Neundorf
patches) Alex svn path=/trunk/KDE/kdelibs/; revision=1074258
2010-01-11-fix handling of imported targets which don't have the link interface ↵Alexander Neundorf
libraries property set, and also fix it on Windows Alex CCMAIL: <ps_ml@gmx.de> CCMAIL: christoph@maxiom.de svn path=/trunk/KDE/kdelibs/; revision=1073213
2010-01-07-make cmake 2.6.2 find SDO 0.2Alexander Neundorf
This didn't work since SDO 0.2 installs its files into share/cmake/SDO/, which is supported by cmake >= 2.6.3, but not by 2.6.2, which KDE requires. It would be nice if SDO would install it into share/SDO/ or share/SDO/cmake, then it would be found automatically by cmake 2.6.2 and also 2.6.3 and all newer versions. Alex CCMAIL: kde-buildsystem@kde.org CCMAIL: mueller@kde.org CCMAIL: release-team@kde.org CCMAIL: trueg@kde.org CCMAIL: kde-packagers@kde.org svn path=/trunk/KDE/kdelibs/; revision=1071218
2010-01-07we require CMake 2.6.2 or KDE, nothing else has been announced, discussed or ↵Alexander Neundorf
even suggested Alex CCMAIL: kde-buildsystem@kde.org CCMAIL: mueller@kde.org svn path=/trunk/KDE/kdelibs/; revision=1071192
2010-01-07we need 2.6.3 for the shared-desktop-ontologies detectionDirk Mueller
svn path=/trunk/KDE/kdelibs/; revision=1071123
2010-01-06-introduce imported targets for the various Qt4 libraries, so we can handle ↵Alexander Neundorf
the release- and debug-libraries finally properly. Tested on my machine with Linux with kdelibs, kdeutils and some other module, and also tested under Windows by Saro. If you suddenly get strange linking-related errors with Qt4 libraries, please let me know ASAP. This should also help the installation of KDE under Windows, since with these imported Qt libraries the location of the Qt-libraries is not fixed at kdelibs-buildtime anymore (for the installed dependencies-file), but determined at 3rd-party cmake-time. So different locations of Qt on a Windows-development machine should be no problem anymore. (I'd like to have some feedback on this ) Alex CCMAIL: kde-windows@kde.org CCMAIL: kde-buildsystem@kde.org CCMAIL: <ps_ml@gmx.de> svn path=/trunk/KDE/kdelibs/; revision=1070849
2010-01-06-setting QUIETLY manually is not necessary, this is handled automatically by ↵Alexander Neundorf
find_package_handle_standard_args() -the first argument to find_package_handle_standard_args() should be the exact-case name of the Find-module, i.e. "LibAttica", not "libattica" Frederik: if you really want to see this as "libattica", then the module has to be renamed to "Findlibattica.cmake", which is also ok and we still have the time to do it since this file has not been part of a release yet. Alex CCMAIL: <gladhorn@kde.org> CCMAIL: <vkrause@kde.org> svn path=/trunk/KDE/kdelibs/; revision=1070847
2010-01-06bugfix: this macro did actually in most cases not work as it should, since mostAlexander Neundorf
find-modules set UPPERCASE_FOUND, while this set only CamelCase_FOUND. Now it sets both. Alex CCMAIL: vkrause@kde.org svn path=/trunk/KDE/kdelibs/; revision=1070843
2010-01-01Make it possible to override SIP_DEFAULT_DIR from the commandline. ThisMichael Jansen
makes it possible to install the sip files into the same prefix like the rest of kdelibs. Perhaps it would be a got idea to respect PYTHON_LIBS_WITH_KDE (from FindPythonLibrary.cmake) here? But I'm not sure. CCMAIL: kde-buildsystem@kde.org CCMAIL: kde-bindings@kde.org svn path=/trunk/KDE/kdelibs/; revision=1068561
2009-12-30hmm, actually that change breaks nmake, so revert it. It's a bug that has to ↵Romain Pokrzywka
be fixed in jom directly. svn path=/trunk/KDE/kdelibs/; revision=1067674
2009-12-30jom parses the '#' from the class uri as the start of a comment so we must ↵Romain Pokrzywka
escape it svn path=/trunk/KDE/kdelibs/; revision=1067673
2009-12-28There doesn't exist any sourceformatter library.Andreas Pakulat
svn path=/trunk/KDE/kdelibs/; revision=1067028
2009-12-28Make Soprano dependency check nonfatal and thus Nepomuk libs optional.Maciej Mrozowski
Also updated Soprano URL in FindNepomuk.cmake. To build Nepomuk libs one still needs Soprano >= 2.3.70 with raptor parser and redland storage as well as SDO >= 0.2. CCMAIL: kde-buildsystem@kde.org svn path=/trunk/KDE/kdelibs/; revision=1067012
2009-12-26Fix FindSharedDesktopOntologies: Previously, if the required version wasn't ↵Christophe Giboudeaux
found (mismatching _VERSION), this cmake file was looking for *any* version and set SHAREDDESKTOPONTOLOGIES_FOUND to true. This also means kdelibs will now require SDO 0.2. ack'ed by Alex. svn path=/trunk/KDE/kdelibs/; revision=1066282
2009-12-24CCMAIL: neundorf@kde.orgDario Freddi
Strange indeed. I applied your patch, but to make it work I had to change the find_path calls with find_file, which actually makes more sense, also. They both work here (but the previous method worked too), let's see how CDash likes this. Ah, let me remind you of this: http://mail.kde.org/pipermail/kde-buildsystem/2009-December/006459.html it's quite critical and should be solved before 4.4 release. Merry christmas and a happy new year svn path=/trunk/KDE/kdelibs/; revision=1065822
2009-12-23-handle the case that release- as well as debug-version have been found ↵Alexander Neundorf
first, because otherwise we always run into this branch (because the release-only and debug-only branches set both variables) Alex svn path=/trunk/KDE/kdelibs/; revision=1065525
2009-12-22CCMAIL: ossi@kde.orgDario Freddi
CCMAIL: kde-buildsystem@kde.org Fix FindPolkitQt*.cmake to avoid requiring pkgconfig to check for version. This makes trunk optdepends on the new polkit-qt 0.9.3 and polkit-qt-1 0.95.1, which will be released shortly. Also, the polkit-1 backend has been ported to the stable API of Polkit-qt-1 0.95.1 svn path=/trunk/KDE/kdelibs/; revision=1065226
2009-12-20-sync the way how the libraries are found with the FindQt4.cmake from ↵Alexander Neundorf
current cmake With this commit there are only minor differences to the FindQt4.cmake coming with cmake left. Alex svn path=/trunk/KDE/kdelibs/; revision=1064318
2009-12-20-sort the libs alphabeticallyAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=1064299
2009-12-20-sync with cmake: move the check for the window system before the ↵Alexander Neundorf
include-dir search Alex svn path=/trunk/KDE/kdelibs/; revision=1064296
2009-12-20-syncing with cmake: 7 differences less, 35 left to goAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=1064278
2009-12-19-keep in sync with Qt4 from cmakeAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=1063890