~ubuntu-branches/ubuntu/precise/compiz/precise-proposed

« back to all changes in this revision

Viewing changes to .pc/fix_929989.patch/plugins/decor/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2012-11-12 13:56:29 UTC
  • mfrom: (0.168.20)
  • Revision ID: package-import@ubuntu.com-20121112135629-96rj38mdc28b1piq
Tags: 1:0.9.7.8+bzr3121-0ubuntu1
* New upstream stable branch snapshot.
  - Includes all the previous cherry-picked fixes
  - Fix crash when imgsvg is loaded, due to missing symbol 
    (decor_apply_gravity from libdecoration). (LP: #956986)
  - Fix multiple window placement bugs (LP: #974242) (LP: #976032)
  - Fix window handle leak causing gradual degradation in desktop 
    performance (LP: #1050610)
  - Some decoration pixmaps get leaked on window resize, due to race 
    conditions between gtk-window-decorator and the decor plugin.
    (LP: #1057263)
  - Avoid a NULL dereference and give a useful error message instead.
    (LP: #944653)
  - Fix leakage of destroyed_pixmaps_table, containing pointers to freed 
    decor_t's which could result in a freed GHashTable being passed into 
    g_hash_table_remove and causing a crash. (LP: #1060171)
* debian/patches/compiz-package-gles2.patch:
  - Drop the NEWS file, update decor.cpp part to build with new upstream
    code.
* debian/patches/revert_fix_933776_955035.patch:
  - Cherry-pick the revert from upstream since the bug fix is not 
    suitable for SRU as is
* debian/patches/revert_fix_994841.patch:
  - Cherry-pick also this revert as non-SRU material, not relevant 
    to users
* debian/libdecoration0.symbols:
  - Update with latest symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
find_package (Compiz REQUIRED)
2
 
 
3
 
include (CompizPlugin)
4
 
include (CompizCommon)
5
 
 
6
 
include_directories (${CMAKE_CURRENT_SOURCE_DIR}/src/clip-groups/include/)
7
 
 
8
 
compiz_plugin(decor PLUGINDEPS composite opengl LIBRARIES decoration compiz_decor_clip_groups)
9
 
 
10
 
add_subdirectory (src/clip-groups)
11
 
 
12
 
if (COMPIZ_BUILD_WITH_RPATH AND NOT COMPIZ_DISABLE_PLUGIN_DECOR)
13
 
 
14
 
    set_target_properties (
15
 
        decor PROPERTIES
16
 
        INSTALL_RPATH "${COMPIZ_LIBDIR}"
17
 
    )
18
 
endif (COMPIZ_BUILD_WITH_RPATH AND NOT COMPIZ_DISABLE_PLUGIN_DECOR)