summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx18
1 files changed, 17 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 34d44e2..baf3b0b 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -2184,7 +2184,23 @@ std::string cmMakefile::FindLibrary(const char* name,
}
}
}
-
+ if(m_LocalGenerator->GetGlobalGenerator()->GetLanguageEnabled("C"))
+ {
+ std::string voidsize = this->GetRequiredDefinition("CMAKE_SIZEOF_VOID_P");
+ int size = atoi(voidsize.c_str());
+ if(size == 8)
+ {
+ path.push_back("/usr/X11R6/lib64");
+ path.push_back("/usr/local/lib64");
+ path.push_back("/usr/lib64");
+ }
+ if(size == 4)
+ {
+ path.push_back("/usr/X11R6/lib32");
+ path.push_back("/usr/local/lib32");
+ path.push_back("/usr/lib32");
+ }
+ }
return cmSystemTools::FindLibrary(name, path);
}