1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 12:27:52 +00:00

Transparency: Double-buffer not taken into consideration when selecting X11 when using ccmake (#383)

* Solved an issue when having own_visual_argb_visual combined with double_buffer
which break with an error. And when disabling this combination Conky is not
anymore transparent.

* Added imlib2 for travis

* Added libimlib2-dev for travis
This commit is contained in:
Erinor2 2018-01-19 15:08:14 +01:00 committed by Brenden Matthews
parent cb089b3231
commit a34663f844
2 changed files with 4 additions and 3 deletions

View File

@ -16,6 +16,7 @@ addons:
- liblua5.1-0-dev - liblua5.1-0-dev
- libtolua++5.1-dev - libtolua++5.1-dev
- libcairo2-dev - libcairo2-dev
- libimlib2-dev
- libxinerama-dev - libxinerama-dev
- gawk - gawk
before_script: before_script:

View File

@ -110,10 +110,10 @@ if(BUILD_X11)
option(OWN_WINDOW "Enable own_window support" true) option(OWN_WINDOW "Enable own_window support" true)
option(BUILD_XDAMAGE "Build Xdamage support" true) option(BUILD_XDAMAGE "Build Xdamage support" true)
option(BUILD_XINERAMA "Build Xinerama support" true) option(BUILD_XINERAMA "Build Xinerama support" true)
option(BUILD_XDBE "Build Xdbe (double-buffer) support" false) option(BUILD_XDBE "Build Xdbe (double-buffer) support" true)
option(BUILD_XFT "Build Xft (freetype fonts) support" true) option(BUILD_XFT "Build Xft (freetype fonts) support" true)
option(BUILD_IMLIB2 "Enable Imlib2 support" false) option(BUILD_IMLIB2 "Enable Imlib2 support" true)
option(BUILD_XSHAPE "Enable Xshape support" false) option(BUILD_XSHAPE "Enable Xshape support" true)
else(BUILD_X11) else(BUILD_X11)
set(OWN_WINDOW false CACHE BOOL "Enable own_window support" FORCE) set(OWN_WINDOW false CACHE BOOL "Enable own_window support" FORCE)
set(BUILD_XDAMAGE false CACHE BOOL "Build Xdamage support" FORCE) set(BUILD_XDAMAGE false CACHE BOOL "Build Xdamage support" FORCE)