From 06638039aaa01c5431e6b4f0c153390afbe82c46 Mon Sep 17 00:00:00 2001 From: Philip Lowman Date: Wed, 3 Oct 2012 04:52:35 -0400 Subject: [PATCH] FindGTK2: #12049 fix detection of header files on multiarch systems --- Modules/FindGTK2.cmake | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Modules/FindGTK2.cmake b/Modules/FindGTK2.cmake index 2373422be..119ad0e7f 100644 --- a/Modules/FindGTK2.cmake +++ b/Modules/FindGTK2.cmake @@ -190,8 +190,15 @@ function(_GTK2_FIND_INCLUDE_DIR _var _hdr) "include suffixes = ${_suffixes}") endif() + if(CMAKE_LIBRARY_ARCHITECTURE) + set(_gtk2_arch_dir /usr/lib/${CMAKE_LIBRARY_ARCHITECTURE}) + if(GTK2_DEBUG) + message(STATUS "Adding ${_gtk2_arch_dir} to search path for multiarch support") + endif() + endif() find_path(${_var} ${_hdr} PATHS + ${_gtk2_arch_dir} /usr/local/lib64 /usr/local/lib /usr/lib64