]> source.dussan.org Git - tigervnc.git/commitdiff
Remove superfluous X11_FOUND check
authorPierre Ossman <ossman@cendio.se>
Wed, 24 Jan 2024 10:10:07 +0000 (11:10 +0100)
committerPierre Ossman <ossman@cendio.se>
Wed, 24 Jan 2024 10:10:07 +0000 (11:10 +0100)
It is REQUIRED in this context, so we can assume X11 has been found.

unix/x0vncserver/CMakeLists.txt

index 08b346f1a6f149cb5ffc039cb36797eff0a74ed3..b9f6bd01625cac245f6ab78f819f3dd2281490f5 100644 (file)
@@ -27,28 +27,28 @@ if (LIBSYSTEMD_FOUND)
   target_link_libraries(x0vncserver ${LIBSYSTEMD_LIBRARIES})
 endif()
 
-if(X11_FOUND AND X11_XTest_LIB)
+if(X11_XTest_LIB)
   add_definitions(-DHAVE_XTEST)
   target_link_libraries(x0vncserver ${X11_XTest_LIB})
 else()
   message(WARNING "No XTest extension.  x0vncserver will be view-only.")
 endif()
 
-if(X11_FOUND AND X11_Xdamage_LIB)
+if(X11_Xdamage_LIB)
   add_definitions(-DHAVE_XDAMAGE)
   target_link_libraries(x0vncserver ${X11_Xdamage_LIB})
 else()
   message(WARNING "No DAMAGE extension.  x0vncserver will have to use the slower polling method.")
 endif()
 
-if(X11_FOUND AND X11_Xfixes_LIB)
+if(X11_Xfixes_LIB)
   add_definitions(-DHAVE_XFIXES)
   target_link_libraries(x0vncserver ${X11_Xfixes_LIB})
 else()
   message(WARNING "No XFIXES extension.  x0vncserver will not be able to show cursors.")
 endif()
 
-if(X11_FOUND AND X11_Xrandr_LIB)
+if(X11_Xrandr_LIB)
   add_definitions(-DHAVE_XRANDR)
   target_link_libraries(x0vncserver ${X11_Xrandr_LIB})
 else()