diff options
author | Jiří Techet <techet@gmail.com> | 2015-05-01 22:48:33 +0200 |
---|---|---|
committer | Jiří Techet <techet@gmail.com> | 2015-05-01 22:48:33 +0200 |
commit | b7df2e8bdddaa2a82606a82d7009e07c130ed967 (patch) | |
tree | 669fca4cbade1be174ccc67746962c57a6bcc749 | |
parent | cbe8a61dfacf107f49dbfc65f8385576c72fe41e (diff) | |
download | libgit2-b7df2e8bdddaa2a82606a82d7009e07c130ed967.tar.gz |
Don't search iconv in /opt/local
Since OpenSSL isn't used any more on OS X, there is no dependency
on any MacPorts library under /opt/local and there is no danger of
conflicts between MacPorts and system iconv. For this reason the
system iconv can always be used now.
-rw-r--r-- | cmake/Modules/FindIconv.cmake | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cmake/Modules/FindIconv.cmake b/cmake/Modules/FindIconv.cmake index c5a419011..95414bda6 100644 --- a/cmake/Modules/FindIconv.cmake +++ b/cmake/Modules/FindIconv.cmake @@ -11,10 +11,7 @@ IF(ICONV_INCLUDE_DIR AND ICONV_LIBRARIES) SET(ICONV_FIND_QUIETLY TRUE) ENDIF() -FIND_PATH(ICONV_INCLUDE_DIR iconv.h PATHS /opt/local/include NO_DEFAULT_PATH) FIND_PATH(ICONV_INCLUDE_DIR iconv.h) - -FIND_LIBRARY(iconv_lib NAMES iconv libiconv libiconv-2 c NO_DEFAULT_PATH PATHS /opt/local/lib) FIND_LIBRARY(iconv_lib NAMES iconv libiconv libiconv-2 c) IF(ICONV_INCLUDE_DIR AND iconv_lib) |