summaryrefslogtreecommitdiffstats
path: root/main/libssh
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-10-05 09:11:31 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-10-05 09:11:31 +0000
commita33599ccc3f96453286173267a61016b08f48d52 (patch)
tree6b3eea8b1eda358decdb7a72a2eb2eafc62b2f0f /main/libssh
parent5f9223b4ab9f637d509324fb1a4c829f9c259153 (diff)
downloadaports-a33599ccc3f96453286173267a61016b08f48d52.tar.bz2
aports-a33599ccc3f96453286173267a61016b08f48d52.tar.xz
main/libssh: add missing patch
Diffstat (limited to 'main/libssh')
-rw-r--r--main/libssh/libssh-ccache.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/main/libssh/libssh-ccache.patch b/main/libssh/libssh-ccache.patch
new file mode 100644
index 000000000..65927431d
--- /dev/null
+++ b/main/libssh/libssh-ccache.patch
@@ -0,0 +1,28 @@
+--- ./ConfigureChecks.cmake.orig
++++ ./ConfigureChecks.cmake
+@@ -17,25 +17,6 @@
+ set(BINARYDIR ${CMAKE_BINARY_DIR})
+ set(SOURCEDIR ${CMAKE_SOURCE_DIR})
+
+-function(COMPILER_DUMPVERSION _OUTPUT_VERSION)
+- execute_process(
+- COMMAND
+- ${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_ARG1} -dumpversion
+- OUTPUT_VARIABLE _COMPILER_VERSION
+- )
+-
+- string(REGEX REPLACE "([0-9])\\.([0-9])(\\.[0-9])?" "\\1\\2"
+- _COMPILER_VERSION ${_COMPILER_VERSION})
+-
+- set(${_OUTPUT_VERSION} ${_COMPILER_VERSION} PARENT_SCOPE)
+-endfunction()
+-
+-if(CMAKE_COMPILER_IS_GNUCC AND NOT MINGW)
+- compiler_dumpversion(GNUCC_VERSION)
+- if (NOT GNUCC_VERSION EQUAL 34)
+- check_c_compiler_flag("-fvisibility=hidden" WITH_VISIBILITY_HIDDEN)
+- endif (NOT GNUCC_VERSION EQUAL 34)
+-endif(CMAKE_COMPILER_IS_GNUCC AND NOT MINGW)
+
+ # HEADER FILES
+ check_include_file(argp.h HAVE_ARGP_H)