Skip to content

Commit

Permalink
Re-Added XDamage fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFatDemon authored and brndnmtthws committed Aug 7, 2018
1 parent 10b6e70 commit 37e2c97
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion cmake/ConkyBuildOptions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,14 @@ endif(BUILD_NCURSES)
option(BUILD_X11 "Build X11 support" true)
if(BUILD_X11)
option(OWN_WINDOW "Enable own_window support" true)
option(BUILD_XDAMAGE "Build Xdamage support" true)

# Mac Fix
if(OS_DARWIN)
option(BUILD_XDAMAGE "Build Xdamage support" false)
else(OS_DARWIN)
option(BUILD_XDAMAGE "Build Xdamage support" true)
endif(OS_DARWIN)

option(BUILD_XINERAMA "Build Xinerama support" true)
option(BUILD_XDBE "Build Xdbe (double-buffer) support" true)
option(BUILD_XFT "Build Xft (freetype fonts) support" true)
Expand Down

0 comments on commit 37e2c97

Please sign in to comment.