summaryrefslogtreecommitdiff
path: root/Modules/FindGIF.cmake
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2011-07-27 20:34:09 +0200
committerAlex Neundorf <neundorf@kde.org>2011-07-27 20:34:09 +0200
commitf97620e733a0939046b5b098da3451b20fd26c96 (patch)
tree1b6aaa001bfb1767dc7cb5f8066e822e181ff336 /Modules/FindGIF.cmake
parent7c3852347082a4a0fbeab747d0ec975b72a13c27 (diff)
downloadcmake-f97620e733a0939046b5b098da3451b20fd26c96.tar.gz
FindGIF/FindFreetype.cmake: remove standard search paths from find-calls
In both files find_path() and find_library() are called with multiple additional search PATHS which are already anyway part of the default search dirs, so it should be safe to remove them. Alex
Diffstat (limited to 'Modules/FindGIF.cmake')
-rw-r--r--Modules/FindGIF.cmake13
1 files changed, 1 insertions, 12 deletions
diff --git a/Modules/FindGIF.cmake b/Modules/FindGIF.cmake
index 43802ccb1d..01253466fa 100644
--- a/Modules/FindGIF.cmake
+++ b/Modules/FindGIF.cmake
@@ -28,10 +28,7 @@ FIND_PATH(GIF_INCLUDE_DIR gif_lib.h
PATH_SUFFIXES include
PATHS
~/Library/Frameworks
- /Library/Frameworks
- /sw/include # Fink
- [HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session\ Manager\\Environment;OSG_ROOT]/include
- /usr/freeware/include
+ /usr/freeware
)
# the gif library can have many names :-/
@@ -44,14 +41,6 @@ FIND_LIBRARY(GIF_LIBRARY
PATH_SUFFIXES lib64 lib
PATHS
~/Library/Frameworks
- /Library/Frameworks
- /usr/local
- /usr
- /sw
- /opt/local
- /opt/csw
- /opt
- [HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session\ Manager\\Environment;OSG_ROOT]
/usr/freeware
)