diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-10-05 09:11:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-10-05 09:11:31 +0000 |
commit | a33599ccc3f96453286173267a61016b08f48d52 (patch) | |
tree | 6b3eea8b1eda358decdb7a72a2eb2eafc62b2f0f /main/libssh | |
parent | 5f9223b4ab9f637d509324fb1a4c829f9c259153 (diff) | |
download | aports-a33599ccc3f96453286173267a61016b08f48d52.tar.bz2 aports-a33599ccc3f96453286173267a61016b08f48d52.tar.xz |
main/libssh: add missing patch
Diffstat (limited to 'main/libssh')
-rw-r--r-- | main/libssh/libssh-ccache.patch | 28 |
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 0000000000..65927431d8 --- /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) |