summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2010-11-27 21:46:59 +0000
committerMatthias Melcher <fltk@matthiasm.com>2010-11-27 21:46:59 +0000
commite36e07f3131ff94a8faa7e2a076a79ba7288320d (patch)
tree6699554812069180f63f5ddc77ddd2caf19c9b1a
parentd20ed5585ef8adcb228556d122cb3b0d5240b9e1 (diff)
Changed USE_XINERAMA into HAVE_XINERAME in CMake files. STR #2422
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7899 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--src/CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index aba5b5343..3d4d569d1 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -229,9 +229,9 @@ if(HAVE_CAIRO)
target_link_libraries(fltk fltk_cairo ${PKG_CAIRO_LIBRARIES})
ENDif(HAVE_CAIRO)
-if(USE_XINERAMA)
+if(HAVE_XINERAMA)
target_link_libraries(fltk ${X11_Xinerama_LIB})
-endif(USE_XINERAMA)
+endif(HAVE_XINERAMA)
if(USE_XFT)
target_link_libraries(fltk ${X11_Xft_LIB})
@@ -343,9 +343,9 @@ if(HAVE_CAIRO)
target_link_libraries(fltk_SHARED fltk_cairo ${PKG_CAIRO_LIBRARIES})
ENDif(HAVE_CAIRO)
-if(USE_XINERAMA)
+if(HAVE_XINERAMA)
target_link_libraries(fltk_SHARED ${X11_Xinerama_LIB})
-endif(USE_XINERAMA)
+endif(HAVE_XINERAMA)
if(USE_XFT)
target_link_libraries(fltk_SHARED ${X11_Xft_LIB})