all repos — tint2 @ 0ef56da453b914c266893269c4c2ed0998f05186

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

*fix* require >=imlib2-1.4.2 and >=libXrandr-1.3


git-svn-id: http://tint2.googlecode.com/svn/trunk@611 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
Andreas.Fink85 Andreas.Fink85@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

0ef56da453b914c266893269c4c2ed0998f05186

parent

b75d4fa577c7a30cc464778cd3c61e888afd9da0

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M CMakeLists.txtCMakeLists.txt

@@ -3,13 +3,13 @@ cmake_minimum_required( VERSION 2.6 )

include( FindPkgConfig ) include( CheckLibraryExists ) -pkg_check_modules( X11 REQUIRED x11 xcomposite xdamage xinerama xrender xrandr ) +pkg_check_modules( X11 REQUIRED x11 xcomposite xdamage xinerama xrender xrandr>=1.3 ) pkg_check_modules( PANGOCAIRO REQUIRED pangocairo ) pkg_check_modules( PANGO REQUIRED pango ) pkg_check_modules( CAIRO REQUIRED cairo ) pkg_check_modules( GLIB2 REQUIRED glib-2.0 ) pkg_check_modules( GOBJECT2 REQUIRED gobject-2.0 ) -pkg_check_modules( IMLIB2 REQUIRED imlib2 ) +pkg_check_modules( IMLIB2 REQUIRED imlib2>=1.4.2 ) find_library( RT_LIBRARY rt ) if( NOT X11_FOUND OR NOT PANGOCAIRO_FOUND OR NOT PANGO_FOUND OR NOT CAIRO_FOUND OR NOT GLIB2_FOUND OR NOT GOBJECT2_FOUND OR NOT IMLIB2_FOUND )