aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2006-04-11the usual security fixes:Dirk Mueller
- add proper quoting - add proper LD_LIBRARY_PATH export's - don't make world executable. Ok, it would be better to honor umask, but I don't know how to do that.. svn path=/trunk/KDE/kdelibs/; revision=528894
2006-04-11cups >= 1.1.19 is required by kdeprint. Should that check be added here, or ↵David Faure
in kdeprint? svn path=/trunk/KDE/kdelibs/; revision=528855
2006-04-10-handling paths containing spaces seems to be a major problem, at least hereAlexander Neundorf
on FreeBSD without the double qoutes LD_LIBRARY_PATH works at least, and the added double qoutes help in finding the executable, but now dcopidl2cpp complains about the space in the path to the kidl file, and no qoutes and no backslashes help :-/ Alex P.S. if this breaks the build on other systems, feel free to revert CCMAIL: kde-buildsystem@kde.org svn path=/trunk/KDE/kdelibs/; revision=528380
2006-04-10Reported to fix compilation with msvc.David Faure
svn path=/trunk/KDE/kdelibs/; revision=528134
2006-04-09-better error handling in FindQt4.cmakeAlexander Neundorf
-use add_custom_command instead of add_custom_target(), saves one line of code Alex svn path=/trunk/KDE/kdelibs/; revision=527955
2006-04-08Add a check for Xinput.Adrian Page
svn path=/trunk/KDE/kdelibs/; revision=527638
2006-04-08optimized gnuwin32 detection on windowsRalf Habacker
- find gnuwin32 package location very early - removed GNUWIN32_INCLUDE_DIR/GNUWIN32_LIBRARY_DIR macros, because FindGNUWIN32.cmake sets now CMAKE_INCLUDE_PATH and CMAKE_LIBRARY_PATH - don't use pkgconfig on windows svn path=/trunk/KDE/kdelibs/; revision=527634
2006-04-08fixed gnuwin32 detectionRalf Habacker
svn path=/trunk/KDE/kdelibs/; revision=527629
2006-04-08-generate the shell-wrappers for the executables during buildtime instead of ↵Alexander Neundorf
cmake time, and remove them when "cleaning" Alex svn path=/trunk/KDE/kdelibs/; revision=527599
2006-04-08-try to make it work with paths which contain spacesAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=527571
2006-04-08forgot to add this file :-/Alexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=527541
2006-04-08abort configuring if installed used qt version is to old Ralf Habacker
svn path=/trunk/KDE/kdelibs/; revision=527493
2006-04-08limit gnuwin32 package to windowsRalf Habacker
svn path=/trunk/KDE/kdelibs/; revision=527490
2006-04-08-add GENERIC_LIB_VERSION and GENERIC_LIB_SOVERSION in KDE4Defaults.cmake, so ↵Alexander Neundorf
we can easily adjust the version number of our libs for each release Alex svn path=/trunk/KDE/kdelibs/; revision=527474
2006-04-08-creating of the sh-wrappers now also works with empty EXECUTABLE_OUTPUT_PATHAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=527424
2006-04-07-fix link error in kdewidgetsAlexander Neundorf
-fix error in kate (the ui_ prefix was missing) -change RPATH handling once again: -renamed "TOOL" to "RUN_UNINSTALLED" RPATH_STYLE is gone if CMAKE_SKIP_RPATH is enabled, no RPATH will be used if it is enabled, all except the RUN_UNINSTALLED apps will be built with RPATH to the install dir, apps with RUN_UNINSTALLED set will be built with RPATH to the build dir, and relinked during make install Alex svn path=/trunk/KDE/kdelibs/; revision=527381
2006-04-07-in ADD_CUSTOM_COMMAND: use MAIN_DEPENDENCY, where the depend file is a file ↵Alexander Neundorf
which will not be compiled by the C/C++ compiler and use DEPENDS for everything else and where it's unsure whether it's a header or an implementation file this fixes the build in kdelibs/kdewidgets/ partly, now it breaks with "unknown interface" :-/ Alex svn path=/trunk/KDE/kdelibs/; revision=527355
2006-04-06-use the TOOL keyword for kconfig_compiler, genembed and makekdewidgetsAlexander Neundorf
ideally the keywords would be: one of RUN_FROM_BUILDTREE, RUN_UNINSTALLED, NOINST, BUILDTOO, TOOL - has to run from the buildtree without being installed NOGUI - bascially means "no bundle on OS X", so e.g. also for maybe kwin default (no keyword): build a bundle on OS X, compile with RPATH to the install dir Alex CCMAIL: kde-buildsystem@kde.org svn path=/trunk/KDE/kdelibs/; revision=527103
2006-04-06If libdns_sd or includes are not found, build libkdnssd anyway as stub.Jakub Stachowski
svn path=/trunk/KDE/kdelibs/; revision=527060
2006-04-06unset the bundle param if it is non-guiBenjamin Reed
svn path=/trunk/KDE/kdelibs/; revision=527038
2006-04-05Prefix generated header files with ui_ for designer4 ui files.Matthias Kretz
Adjust the includes accordingly (I hope I found all of them, at least kdelibs compiles here - except for kate/tests/arbitraryhighlighttest.cpp) Be careful when using foo.ui, foo.h, foo.cpp now, though because uic puts a very general include guard macro in the generated file: FOO_H Most people (and kde-devel-vim.vim's ,i) will use the same macro for foo.h. This will hopefully be fixable when Trolltech extends uic so that we don't have to postprocess the output anymore. (The -o option of uic creates the include guard from the name of the output file.) svn path=/trunk/KDE/kdelibs/; revision=526900
2006-04-05-add the NOGUI keyword to the KDE4_ADD_EXECUTABLE_CALLS()Alexander Neundorf
right now this only affects OS X: without the NOGUI keyword, now application bundles should be created I will add RPATH handling later. kdelibs/kabc/: add a dependency of addressee.h to addressee.cpp, this works partly (i.e. it works if none of both exists, but doesn't work if addressee.cpp exists and addressee.h doesn't) Alex CCMAIL: kde-buildsystem@kde.org svn path=/trunk/KDE/kdelibs/; revision=526894 The following changes were in SVN, but were removed from git: M pics/CMakeLists.txt
2006-04-05-add a KDE4Defaults.cmake to set default values and use this one in ↵Alexander Neundorf
kdelibs/CMakeLists.txt Alex svn path=/trunk/KDE/kdelibs/; revision=526864
2006-04-04Ooops remove line that got committed by mistake; more docu updates.David Faure
svn path=/trunk/KDE/kdelibs/; revision=526552
2006-04-04Fix docuDavid Faure
svn path=/trunk/KDE/kdelibs/; revision=526548
2006-04-04-fix detection of Qt4 qmakeAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=526524
2006-04-04-listing the generated header file also in the list of sources can't hurtAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=526481
2006-04-04-tell cmake that kconfig_compiler produces both a header and an ↵Alexander Neundorf
implementation files, this should fix parallel builds Alex svn path=/trunk/KDE/kdelibs/; revision=526472
2006-04-03-prepare for the different executable types: default, "NOGUI" and "BUILDTOOL"Alexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=526097
2006-04-03-add a KDE4_KDESU_LIBS variables, so we have a full path and it can't be ↵Alexander Neundorf
mixed up with the kdesu target Alex svn path=/trunk/KDE/kdelibs/; revision=526087
2006-04-01add QT_MKSPECS_DIRChristian Ehrlicher
svn path=/trunk/KDE/kdelibs/; revision=525241
2006-03-31-revert to not grepping the qmake spec file, since this is unreliable and ↵Alexander Neundorf
breaks the build on several systems Alex svn path=/trunk/KDE/kdelibs/; revision=525015
2006-03-31EXISTS() seems to eat the NOT _skip part, at least with cmake 2.3-20060317; ↵Adriaan de Groot
reversing the terms works better. svn path=/trunk/KDE/kdelibs/; revision=524807
2006-03-31Complain about specific files in a non-clean srcdir; don't insert ↵Adriaan de Groot
/usr/local/include too early; move X11 includes into DCOP_INCLUDES in a clean fashion (I hope). svn path=/trunk/KDE/kdelibs/; revision=524801
2006-03-30bigger changes in FindQt4.cmake:Alexander Neundorf
-new variable QT_MIN_VERSION (as in FindQt3.cmake): set it to the minimum required version -prefer qmake over qmake-qt4 -find uic and moc by grepping the qmake spec file -search for the libs, headers and binaries only in the directories reported by qmake -set the minimum required Qt version to 4.1.1 svn path=/trunk/KDE/kdelibs/; revision=524621
2006-03-30Don't remove this file on make clean, it won't be re-generated by "make".David Faure
svn path=/trunk/KDE/kdelibs/; revision=524571
2006-03-29-add the include paths of all X11 extensions to X11_INCLUDE_PATH, so they ↵Alexander Neundorf
don't have to be added everywhere manually X11_INCLUDE_PATH is part of KDE4_INCLUDES on UNIX != OS X CCMAIL: montel@kde.org Alex svn path=/trunk/KDE/kdelibs/; revision=524151
2006-03-29don't mark it executableDirk Mueller
svn path=/trunk/KDE/kdelibs/; revision=524147
2006-03-29only look at the path we want it to lookAlbert Astals Cid
Aproved by AleXXX svn path=/trunk/KDE/kdelibs/; revision=524129
2006-03-29Consolidate checks for the Microsoft Windows windowing system into one line ↵Tanner Lovelace
instead of specifically checking for win32 or win64. (Thanks to Thiago for the info about this.) svn path=/trunk/KDE/kdelibs/; revision=524072
2006-03-29* Moved kmanagerselection.* to kdeui (it is X11-based and isn't needed by ↵David Faure
anything in kdecore) * Moved HAVE_PTHREAD_ATTR_GET_NP/HAVE_PTHREAD_GETATTR_NP check to kjs since it's only used there (a small step towards modular configuration, and hopefully faster re-configure when editing a CMakeList.txt in a subdir?) svn path=/trunk/KDE/kdelibs/; revision=523933 The following changes were in SVN, but were removed from git: M pics/CMakeLists.txt
2006-03-29Those aliases seem quite useful when building kdelibs itself, too...David Faure
svn path=/trunk/KDE/kdelibs/; revision=523923
2006-03-27-apply patch from Tanner Lovelace: only check for X11 if Q_WS_X11 is definedAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=523302
2006-03-27Better gettext find test. Tested with Linux and NetBSD.Hasso Tepper
svn path=/trunk/KDE/kdelibs/; revision=523195
2006-03-27The other vars don't have KDE4_ as prefix (for some reason)David Faure
svn path=/trunk/KDE/kdelibs/; revision=523162
2006-03-27It's not unused, see kded/CMakeLists.txtDavid Faure
svn path=/trunk/KDE/kdelibs/; revision=523140
2006-03-26-rename KDE4_INCLUDE_DIRS to KDE4_INCLUDES (but still keep it in the ↵Alexander Neundorf
snapshot for compat) Bye Alex CCMAIL: montel@kde.org CCMAIL: faure@kde.org CCMAIL: kde-buildsystem@kde.org svn path=/trunk/KDE/kdelibs/; revision=522713
2006-03-24Search for xpmLaurent Montel
svn path=/trunk/KDE/kdelibs/; revision=522055
2006-03-23add a newline to the end of file.Allen Winter
svn path=/trunk/KDE/kdelibs/; revision=521729
2006-03-23DEPREACTED won't do much good :)David Faure
svn path=/trunk/KDE/kdelibs/; revision=521726