diff options
author | Darrell Anderson <[email protected]> | 2012-06-01 12:41:02 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-06-01 20:48:17 -0500 |
commit | 85c2426f988de375bc666bef5a24529989737470 (patch) | |
tree | dea46f10b69fe81352af4185ca4f76e6b0719715 /ConfigureChecks.cmake | |
parent | 504aaa08877c3368fa2ad986ccad14f9138bf966 (diff) | |
download | tdebase-85c2426f988de375bc666bef5a24529989737470.tar.gz tdebase-85c2426f988de375bc666bef5a24529989737470.zip |
Fix svg thumbnail images not appearing in KControl/Appearance & Themes/ Background.
This resolves bug report 744.
Thanks to Sl�vek Banko.
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 90d78be21..ded1d0025 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -211,6 +211,16 @@ else( ) set( WITHOUT_ARTS 1 ) endif( ) +# libart + +if( WITH_LIBART ) + pkg_search_module( LIBART libart-2.0 ) + if( NOT LIBART_FOUND ) + message(FATAL_ERROR "\nlibart-2.0 support are requested, but not found on your system" ) + endif( NOT LIBART_FOUND ) + set( HAVE_LIBART 1 ) +endif( WITH_LIBART ) + # required stuff find_package( TQt ) |