<feed xmlns='http://www.w3.org/2005/Atom'>
<title>extra-cmake-modules.git/modules/FindSqlite.cmake, branch v5.46.0-rc1</title>
<subtitle>hurd extra-cmake-modules.git</subtitle>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/'/>
<entry>
<title>Move the modules, modules-test and systeminfo subdirs into 'attic'</title>
<updated>2011-06-30T21:36:45+00:00</updated>
<author>
<name>Allen Winter</name>
<email>allen.winter@kdab.com</email>
</author>
<published>2011-06-30T21:36:45+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=d2b2c90a06bf1f4a21df196430d1f95856900410'/>
<id>d2b2c90a06bf1f4a21df196430d1f95856900410</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>-consistent upper/lowercasing</title>
<updated>2010-09-26T16:38:25+00:00</updated>
<author>
<name>Alexander Neundorf</name>
<email>neundorf@kde.org</email>
</author>
<published>2010-09-26T16:38:25+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=eb2dd953289c2cf3151b1badda8afe6e5458024d'/>
<id>eb2dd953289c2cf3151b1badda8afe6e5458024d</id>
<content type='text'>
-remove the unnecessary if(already found) set(QUIET TRUE), since this is already handled by find_package_handle_standard_args()

Alex


svn path=/trunk/KDE/kdelibs/; revision=1179961
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
-remove the unnecessary if(already found) set(QUIET TRUE), since this is already handled by find_package_handle_standard_args()

Alex


svn path=/trunk/KDE/kdelibs/; revision=1179961
</pre>
</div>
</content>
</entry>
<entry>
<title>Suppress 'not found' messages from pkgconfig when the module subsequently</title>
<updated>2009-03-11T22:39:22+00:00</updated>
<author>
<name>David Jarvie</name>
<email>djarvie@kde.org</email>
</author>
<published>2009-03-11T22:39:22+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=ac954219018fac1c1cae99b6e69be9438e452233'/>
<id>ac954219018fac1c1cae99b6e69be9438e452233</id>
<content type='text'>
attempts to locate the package by other means.

svn path=/trunk/KDE/kdelibs/; revision=938476
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
attempts to locate the package by other means.

svn path=/trunk/KDE/kdelibs/; revision=938476
</pre>
</div>
</content>
</entry>
<entry>
<title>-add missing copyright notices, I hope I got it right</title>
<updated>2009-01-04T15:39:53+00:00</updated>
<author>
<name>Alexander Neundorf</name>
<email>neundorf@kde.org</email>
</author>
<published>2009-01-04T15:39:53+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=87c903a8e853eec433860818a01040da8d1c5f1a'/>
<id>87c903a8e853eec433860818a01040da8d1c5f1a</id>
<content type='text'>
-also a few empty lines here and there to make it look nicer

Alex



svn path=/trunk/KDE/kdelibs/; revision=905547
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
-also a few empty lines here and there to make it look nicer

Alex



svn path=/trunk/KDE/kdelibs/; revision=905547
</pre>
</div>
</content>
</entry>
<entry>
<title>-rework all uses of find_package(PkgConfig)/pkg_check_modules():</title>
<updated>2008-12-02T21:49:01+00:00</updated>
<author>
<name>Alexander Neundorf</name>
<email>neundorf@kde.org</email>
</author>
<published>2008-12-02T21:49:01+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=c379d4c4e0655fac2dadd4be57e2e5cd23d40572'/>
<id>c379d4c4e0655fac2dadd4be57e2e5cd23d40572</id>
<content type='text'>
the prefix used for pkgconfig config (e.g. SQLITE) now *always* gets an additional "PC_" prefix, so the prefix used
for pkgconfig is now "PC_SQLITE_". This avoids name clashes between variables defined by the pkgconfig macro and the find module
and unwanted effects.

*Never* use the _CFLAGS coming from pkgconfig, but always CFLAGS_OTHER, since these shouldn't contain the include directories.
If the include directories would be in the DEFINITIONS variable this could clash with the results of find_path() for finding include dirs.

*Always* use both foo_INCLUDEDIR, foo_INCLUDE_DIRS for searching the include dir, and also both foo_LIBDIR and foo_LIBRARY_DIRS for
searching the libraries.

These directories coming from pkgconfig are *never* used exclusively, but *always* additionally to the standard search dirs,
either before them (then using the "HINTS" keyword) or after them (then using the "PATHS" keyword)

I hope I didn't break (too much) stuff. At least on my system it all seems to work the same way as it did before, with and without pkgconfig.

Alex





svn path=/trunk/KDE/kdelibs/; revision=891805
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the prefix used for pkgconfig config (e.g. SQLITE) now *always* gets an additional "PC_" prefix, so the prefix used
for pkgconfig is now "PC_SQLITE_". This avoids name clashes between variables defined by the pkgconfig macro and the find module
and unwanted effects.

*Never* use the _CFLAGS coming from pkgconfig, but always CFLAGS_OTHER, since these shouldn't contain the include directories.
If the include directories would be in the DEFINITIONS variable this could clash with the results of find_path() for finding include dirs.

*Always* use both foo_INCLUDEDIR, foo_INCLUDE_DIRS for searching the include dir, and also both foo_LIBDIR and foo_LIBRARY_DIRS for
searching the libraries.

These directories coming from pkgconfig are *never* used exclusively, but *always* additionally to the standard search dirs,
either before them (then using the "HINTS" keyword) or after them (then using the "PATHS" keyword)

I hope I didn't break (too much) stuff. At least on my system it all seems to work the same way as it did before, with and without pkgconfig.

Alex





svn path=/trunk/KDE/kdelibs/; revision=891805
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix it</title>
<updated>2008-11-11T11:50:35+00:00</updated>
<author>
<name>Laurent Montel</name>
<email>montel@kde.org</email>
</author>
<published>2008-11-11T11:50:35+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=b6f9515fff4f5e47c8514197474294c7168c3ab7'/>
<id>b6f9515fff4f5e47c8514197474294c7168c3ab7</id>
<content type='text'>
svn path=/trunk/KDE/kdelibs/; revision=882740
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
svn path=/trunk/KDE/kdelibs/; revision=882740
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert it</title>
<updated>2008-11-09T17:47:01+00:00</updated>
<author>
<name>Laurent Montel</name>
<email>montel@kde.org</email>
</author>
<published>2008-11-09T17:47:01+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=2ff39e5b0dff557ad514a2b8f1e062a6795d6108'/>
<id>2ff39e5b0dff557ad514a2b8f1e062a6795d6108</id>
<content type='text'>
svn path=/trunk/KDE/kdelibs/; revision=882079
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
svn path=/trunk/KDE/kdelibs/; revision=882079
</pre>
</div>
</content>
</entry>
<entry>
<title>unbreak checks</title>
<updated>2007-08-23T22:14:18+00:00</updated>
<author>
<name>Stephan Binner</name>
<email>binner@kde.org</email>
</author>
<published>2007-08-23T22:14:18+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=774a92f000c11eb7fc6d4d0032596d35b0c27de4'/>
<id>774a92f000c11eb7fc6d4d0032596d35b0c27de4</id>
<content type='text'>
svn path=/trunk/KDE/kdelibs/; revision=704013
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
svn path=/trunk/KDE/kdelibs/; revision=704013
</pre>
</div>
</content>
</entry>
<entry>
<title>Use FIND_PACKAGE_HANDLE_STANDARD_ARGS</title>
<updated>2007-08-20T06:51:13+00:00</updated>
<author>
<name>Laurent Montel</name>
<email>montel@kde.org</email>
</author>
<published>2007-08-20T06:51:13+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=a0ac74e03721c2b1441a733d57377f177ceff7a3'/>
<id>a0ac74e03721c2b1441a733d57377f177ceff7a3</id>
<content type='text'>
Fix typo

svn path=/trunk/KDE/kdelibs/; revision=702150
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix typo

svn path=/trunk/KDE/kdelibs/; revision=702150
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove not necessary path here too</title>
<updated>2007-08-06T17:30:55+00:00</updated>
<author>
<name>Laurent Montel</name>
<email>montel@kde.org</email>
</author>
<published>2007-08-06T17:30:55+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/extra-cmake-modules.git/commit/?id=9d5410493b0c4b2413f44f84d06bb847f2174fa8'/>
<id>9d5410493b0c4b2413f44f84d06bb847f2174fa8</id>
<content type='text'>
svn path=/trunk/KDE/kdelibs/; revision=697065
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
svn path=/trunk/KDE/kdelibs/; revision=697065
</pre>
</div>
</content>
</entry>
</feed>
