diff options
author | B Stack <bgstack15@gmail.com> | 2019-10-21 09:46:34 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-10-21 09:46:34 -0400 |
commit | 4687d95b1a51b746b19dc8b47e1241bedae0b226 (patch) | |
tree | 305c4ba3209650ff40e84af4de28972f9aa0513a /freefilesync/debian/patches/ffs_curl.patch | |
parent | waterfox: el8 disable system_webp (diff) | |
download | stackrpms-4687d95b1a51b746b19dc8b47e1241bedae0b226.tar.gz stackrpms-4687d95b1a51b746b19dc8b47e1241bedae0b226.tar.bz2 stackrpms-4687d95b1a51b746b19dc8b47e1241bedae0b226.zip |
freefilesync 10.17 dpkg rc1
Diffstat (limited to 'freefilesync/debian/patches/ffs_curl.patch')
-rw-r--r-- | freefilesync/debian/patches/ffs_curl.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/freefilesync/debian/patches/ffs_curl.patch b/freefilesync/debian/patches/ffs_curl.patch new file mode 100644 index 0000000..2844a54 --- /dev/null +++ b/freefilesync/debian/patches/ffs_curl.patch @@ -0,0 +1,20 @@ +Source: AUR +Author: Simon Brulhart +Date: 2019-10-20 21:33:47 +0200 +Message: +remove assertion for libcurl version >1.67 (1.66 should be safe but slower) +The upstream release uses the curl git master branch instead of release versions. The AUR guy thinks it's acceptable to use the older version of libcurl, that is actually already released. +Version: FreeFileSync 10.17 +diff -r -u 10.17-0/FreeFileSync/Source/afs/ftp.cpp 10.17-1/FreeFileSync/Source/afs/ftp.cpp +--- 10.17-0/FreeFileSync/Source/afs/ftp.cpp 2019-10-17 18:37:03.000000000 +0200 ++++ 10.17-1/FreeFileSync/Source/afs/ftp.cpp 2019-10-20 20:18:07.221692533 +0200 +@@ -632,7 +632,7 @@ + curlRelPath += compFmt; + } + +- static_assert(LIBCURL_VERSION_MAJOR > 7 || (LIBCURL_VERSION_MAJOR == 7 && LIBCURL_VERSION_MINOR >= 67)); ++ // static_assert(LIBCURL_VERSION_MAJOR > 7 || (LIBCURL_VERSION_MAJOR == 7 && LIBCURL_VERSION_MINOR >= 67)); + /* 1. CURLFTPMETHOD_NOCWD requires absolute paths to unconditionally skip CWDs: https://github.com/curl/curl/pull/4382 + 2. CURLFTPMETHOD_SINGLECWD requires absolute paths to skip one needless "CWD entry path": https://github.com/curl/curl/pull/4332 + => https://curl.haxx.se/docs/faq.html#How_do_I_list_the_root_dir_of_an + |