From 46feb1302c50d9031d25fc865d34c17e5e88c66f Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Thu, 18 Dec 2008 21:53:56 -0500 Subject: [PATCH] BUG: fix for #8298 look for libexpat as well --- Modules/FindEXPAT.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/FindEXPAT.cmake b/Modules/FindEXPAT.cmake index ee5b2fafe..ee804e1ff 100644 --- a/Modules/FindEXPAT.cmake +++ b/Modules/FindEXPAT.cmake @@ -9,7 +9,7 @@ FIND_PATH(EXPAT_INCLUDE_DIR NAMES expat.h) # Look for the library. -FIND_LIBRARY(EXPAT_LIBRARY NAMES expat) +FIND_LIBRARY(EXPAT_LIBRARY NAMES expat libexpat) # handle the QUIETLY and REQUIRED arguments and set EXPAT_FOUND to TRUE if # all listed variables are TRUE