summaryrefslogtreecommitdiff
path: root/Modules/FindPNG.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-04-07 13:46:02 -0400
committerBrad King <brad.king@kitware.com>2005-04-07 13:46:02 -0400
commit76f905002617dd534df04f1c1c0842d59f50f531 (patch)
treeddfb26a19fe535d2e17e22bd8fe8ca0c084e6b92 /Modules/FindPNG.cmake
parentfadff337910f1c6faf5a2e36afe54b6ea1aee0e8 (diff)
downloadcmake-76f905002617dd534df04f1c1c0842d59f50f531.tar.gz
ENH: Adding support for 64-bit library paths. Contributed by Peter Vanroose.
Diffstat (limited to 'Modules/FindPNG.cmake')
-rw-r--r--Modules/FindPNG.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/FindPNG.cmake b/Modules/FindPNG.cmake
index 3ddf05e29f..845b9cbea4 100644
--- a/Modules/FindPNG.cmake
+++ b/Modules/FindPNG.cmake
@@ -23,8 +23,9 @@ IF(ZLIB_FOUND)
)
FIND_LIBRARY(PNG_LIBRARY png
- /usr/lib
/usr/local/lib
+ /usr/lib64
+ /usr/lib
)
IF (PNG_LIBRARY)