~ubuntu-branches/ubuntu/karmic/kdeplasma-addons/karmic-updates

« back to all changes in this revision

Viewing changes to applets/lancelot/app/src/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter, Christian Mangold, Alessandro Ghersi, Harald Sitter
  • Date: 2009-08-30 20:11:55 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20090830201155-ftsg6ehgrdsrcn8f
Tags: 4:4.3.1-0ubuntu1
[ Christian Mangold ]
* New upstream release
* Bump version of KDE build-deps to 4.3.1

[Alessandro Ghersi]
* Add libxcomposite-dev, libxrender-dev and libxdamage-dev to build-deps
  to build compositing support for Lancelot. (LP: #408235)
  (Thanks to Khashayar Naderehvandi)

[ Harald Sitter ]
* Fix armel build using kubuntu_01_fix_armel_build.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
# Checking for Composite Begin                          #
10
10
#########################################################
11
11
 
12
 
message ("Composite libraries?")
13
 
if( X11_Xcomposite_FOUND AND X11_Xdamage_FOUND )
 
12
if(X11_Xrender_FOUND )
14
13
    set( LANCELOT_HAVE_COMPOSITING 1 )
15
 
    message ("Composite libraries found")
16
 
endif( X11_Xcomposite_FOUND AND X11_Xdamage_FOUND )
 
14
endif( X11_Xrender_FOUND )
 
15
 
 
16
macro_log_feature(LANCELOT_HAVE_COMPOSITING
 
17
   "XRender"
 
18
   "Lancelot compositing support"
 
19
   "http://www.x.org/"
 
20
   FALSE
 
21
   ""
 
22
   "STRONGLY_RECOMMENDED: XRender extension is required for Lancelot compositing support")
 
23
 
17
24
 
18
25
configure_file(config-lancelot.h.cmake
19
26
   ${CMAKE_CURRENT_BINARY_DIR}/config-lancelot.h )