Fix cmake build: removed unnecessary and potentially harmful check in poppler-tqt

This resolves Bug 1295
pull/1/head
Alexander Golubev 12 years ago committed by Slávek Banko
parent 2f22b12a60
commit 3fe3a36fd5

@ -1,11 +1,9 @@
# Poppler
if( BUILD_KPDF )
pkg_search_module( POPPLER poppler )
if( POPPLER_FOUND )
set( HAVE_POPPLER 1 )
else( )
tde_message_fatal( "poppler is required, but was not found on your system" )
endif( )
pkg_search_module( POPPLER poppler )
if( POPPLER_FOUND )
set( HAVE_POPPLER 1 )
else( )
tde_message_fatal( "poppler is required, but was not found on your system" )
endif( )
tde_save( CMAKE_REQUIRED_INCLUDES CMAKE_REQUIRED_LIBRARIES )

Loading…
Cancel
Save