aboutsummaryrefslogtreecommitdiff
path: root/modules/FindGIF.cmake
AgeCommit message (Collapse)Author
2011-06-30Move the modules, modules-test and systeminfo subdirs into 'attic'Allen Winter
2010-04-18fixed findgif.cmake for new windows versionPatrick von Reth
svn path=/trunk/KDE/kdelibs/; revision=1116096
2006-09-19prepare for merging to cmakeAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=586500
2006-09-09added copyright notice everywhere.Alexander Neundorf
Now they all are BSD-licensed, as copyright holder I inserted everywhere the one who added it to svn (or Kitware if it is an enhanced copy from taken cmake) Some developers committed quite often but were not the ones who added the file, if you feel you have also copyright on the file add your name in the specific file. Copyright holders: CCMAIL: montel@kde.org CCMAIL: toscano.pino@tiscali.it CCMAIL: adymo@kdevelop.org CCMAIL: ranger@befunk.com CCMAIL: zack@kde.org CCMAIL: caslav.ilic@gmx.net CCMAIL: syntheticpp@yahoo.com CCMAIL: js@iidea.pl CCMAIL: michael.larouche@kdemail.net CCMAIL: ossi@kde.org CCMAIL: faure@kde.org Committers, but no files added so that they are not listed as copyright holders: CCMAIL: ch.ehrlicher@gmx.de CCMAIL: winter@kde.org CCMAIL: ralf.habacker@freenet.de CCMAIL: moura@kdewebdev.org CCMAIL: kde-buildsystem@kde.org Alex svn path=/trunk/KDE/kdelibs/; revision=582410
2006-05-30Allow cmake to use the gif include dir, necessary for the check.Paulo Moura Guedes
CCMAIL: kde-buildsystem@kde.org svn path=/trunk/KDE/kdelibs/; revision=546660
2006-05-28Check for UserData member of GifFileType so it bails with giflib (and not ↵Adriaan de Groot
libgif) during compile. svn path=/trunk/KDE/kdelibs/; revision=545738
2006-05-23Be just a *tad* more informative on the command-line when an essential ↵Adriaan de Groot
dependency is missing (this shows up under a stock Kubuntu install). Tell the user what was missing. This touches on the idea agai nthat we want a standard macro for informing users of missing dependencies. svn path=/trunk/KDE/kdelibs/; revision=544165
2006-04-20OK so FIND_PATH and FIND_LIBRARIES use the cache already, so no need for the ↵David Faure
CACHED_FOO fast-path when the check only uses those. Instead I used this, to avoid "Found libfoo" in the output when in fact we didn't just look for it, we had it in the cache. +if (TIFF_INCLUDE_DIR) + # Already in cache, be silent + set(TIFF_FIND_QUIETLY TRUE) +endif (TIFF_INCLUDE_DIR) CACHED_FOO remains for the cases where there is more logic to the configure check, like PKGCONFIG, foo-config, or CHECK_LIBRARY_EXISTS (e.g. bzip2) CCMAIL: kde-buildsystem@kde.org svn path=/trunk/KDE/kdelibs/; revision=531839
2006-04-18More use of the cache; fixing previous commit to not recheck everytime when ↵David Faure
something isn't available (e.g. agg for me). svn path=/trunk/KDE/kdelibs/; revision=531000
2006-04-14Actually use the cache whenever possible. Should speed up the re-configuring ↵David Faure
that happens so often. svn path=/trunk/KDE/kdelibs/; revision=529759
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-03-20minor cleanups: indenting, adding newline to end of file, etc.Allen Winter
svn path=/trunk/KDE/kdelibs/; revision=520790
2006-02-16using GNUWIN32_DIR requires detecting of gnuwin32 package dir beforeRalf Habacker
svn path=/trunk/KDE/kdelibs/; revision=510062
2006-02-15find libraries in previously detected gnuwin32 package location Ralf Habacker
svn path=/trunk/KDE/kdelibs/; revision=509911
2006-02-15Hmm, "NOT" can't be lowercased. I tested before lowercasing that last one, ↵David Faure
of course... svn path=/trunk/KDE/kdelibs/; revision=509625
2006-02-15Lowercase some common keywords to improve readabilityDavid Faure
svn path=/trunk/KDE/kdelibs/; revision=509624
2006-02-12-moved the cmake code to find kdewin32 out of FindKDE4.cmake and into its ↵Alexander Neundorf
own FindKDEWIN32.cmake file -added a new FindGNUWIN32.cmake file, which tries to find the gnuwin32 base directory -changed all "FOO_LIBRARY" variable names to "FOO_LIBRARIES" to be more consistent with the other cmake modules -added a macro_getenv_win_path() which replaces all backslahes with slashes from environment variables -modified the kde4_add_kcfg_files() command, so that the generated header is also processed by moc -all tests compile and link Alex CCMAIL:kde-buildsystem@kde.org The changes to the windows stuff are untested, since I don't have a windows box. Please check that everything still works. Please have a look at FindGNUWIN32.cmake, there are probably ways to improve this. The resulting GNUWIN32_DIR variable is used in other cmake modules as default path to search for headers and libraries. svn path=/trunk/KDE/kdelibs/; revision=508648
2006-02-09fixes for msysAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=507636
2006-02-08add some libnamesChristian Ehrlicher
svn path=/trunk/KDE/kdelibs/; revision=507241
2006-01-28look for libgif or libungifBenjamin Reed
svn path=/trunk/KDE/kdelibs/; revision=503362
2006-01-27-first *complete* build of *complete* kdelibs, with no undefined symbols leftAlexander Neundorf
-compile fix in interfaces/ktexteditor/codecompletion2.h, gcc 3.3.6 didn't compile it: In file included from /home/alex/src/kde4-svn/kdelibs/kate/part/kateview.h:31, from /home/alex/src/kde4-svn/kdelibs/kate/part/katesearch.cpp:27: /home/alex/src/kde4-svn/kdelibs/interfaces/ktexteditor/codecompletion2.h:89: error: duplicate field enum KTextEditor::CodeCompletionModel::HighlightMethod' (as enum and non-enum) /home/alex/src/kde4-svn/kdelibs/kate/part/katesearch.cpp: In constructor KateReplacePrompt::KateRep lacePrompt(QWidget*)': /home/alex/src/kde4-svn/kdelibs/kate/part/katesearch.cpp:628: warning: __base_ctor' is deprecated (declared at /home/alex/src/kde4-svn/kdelibs/kdeui/kdialogbase.h:194) -compile fix in kdeui/ktip.cpp, gcc 3.3.6 didn't compile it Alex CCMAIL: kwrite-devel@kde.org svn path=/trunk/KDE/kdelibs/; revision=503028