* Fixed a regression drag-moving local files - add disable-avx-on-i586.patch to disable avx on 32bit platforms OBS-URL: https://build.opensuse.org/package/show/network/filezilla?expand=0&rev=196
25 lines
916 B
Diff
25 lines
916 B
Diff
--- filezilla-3.60.1/src/putty/sshsh256.c
|
|
+++ filezilla-3.60.1/src/putty/sshsh256.c
|
|
@@ -22,8 +22,7 @@
|
|
# define HW_SHA256 HW_SHA256_NI
|
|
# endif
|
|
#elif defined(__GNUC__)
|
|
-# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 9)) && \
|
|
- (defined(__x86_64__) || defined(__i386))
|
|
+# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 9)) && defined(__x86_64__)
|
|
# define HW_SHA256 HW_SHA256_NI
|
|
# endif
|
|
#elif defined (_MSC_VER)
|
|
--- filezilla-3.60.1/src/putty/sshsha.c
|
|
+++ filezilla-3.60.1/src/putty/sshsha.c
|
|
@@ -22,8 +22,7 @@
|
|
# define HW_SHA1 HW_SHA1_NI
|
|
# endif
|
|
#elif defined(__GNUC__)
|
|
-# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 9)) && \
|
|
- (defined(__x86_64__) || defined(__i386))
|
|
+# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 9)) && defined(__x86_64__)
|
|
# define HW_SHA1 HW_SHA1_NI
|
|
# endif
|
|
#elif defined (_MSC_VER)
|