diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-06-14 23:38:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-06-14 23:38:45 +0900 |
commit | 59fd7cea8cc1bad9ea503688c37f353aa8c9820b (patch) | |
tree | 72a796a6e1eba7ad57909fe1afbadb6356442cde | |
parent | 86504f1214deb78997059d71bba74c6b3080cd8f (diff) | |
download | tdegraphics-59fd7cea8cc1bad9ea503688c37f353aa8c9820b.tar.gz tdegraphics-59fd7cea8cc1bad9ea503688c37f353aa8c9820b.zip |
Fixed wrong comment in previous commit.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | ConfigureChecks.cmake | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 8df89a93..24585108 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -29,14 +29,13 @@ if( WITH_GCC_VISIBILITY ) endif( ) -# freetype2 -##### check for fontconfig ###################### +##### check for freetype ##################### if( BUILD_KDVI OR BUILD_KPDF OR BUILD_KSVG ) pkg_search_module( FREETYPE freetype2 ) if( FREETYPE_FOUND ) set( HAVE_FREETYPE 1 ) else( ) - tde_message_fatal( "freetype2 is required, but was not found on your system" ) + tde_message_fatal( "freetype is required, but was not found on your system" ) endif( ) endif( ) |