5c7762a6a1
3.25.2 (2017-04-30) - SFTP components have been updated and are now based on PuTTY 0.69 - Fixed potential stall during the final listing operation when finishing a queue which contained uploads 3.25.2-rc1 (2017-04-23) - Fix crash if filters.xml has become corrupted - Fix FTP proxy support - Fix sending of FTP keep-alive commands - MSW: Windows Vista is no longer supported - MSW: File and directory icons now also appear on systems that have no Windows directory 3.25.1 (2017-03-20) - OS X: Fixed a crash if connecting to old servers not supporting UTF-8 - Fixed timeout detection 3.25.0 (2017-03-13) + OS X: The minimum required OS X version is now 10.9 - OS X: Disable App Nap during transfers and other operations - OS X: Downloaded updates are now stored in the Downloads directory - OS X: Fix initial toolbar state on startup if it was hidden when FileZilla was last closed - Fix reconnect delay logic which broke in 3.25.0-beta1 - Fix piecewise creation of remote paths using FTP which broke in 3.25.0-beta1 3.25.0-rc1 (2017-03-04) - Fix encryption selection for FTP in the Site Manager which broke in 3.25.0-beta1 - Small changes to error message texts 3.25.0-beta1 (2017-02-24) + Major refactoring of the FileZilla internals. - Scale width of fields in the status line control on high-DPI displays - Fix duplicate mnemonic in "Files currently being edited" dialog.
15 lines
368 B
Text
15 lines
368 B
Text
$NetBSD: patch-configure,v 1.2 2017/05/29 12:51:52 wiz Exp $
|
|
|
|
Fix unportable test(1) operator.
|
|
|
|
--- configure.orig 2017-04-30 11:12:36.000000000 +0000
|
|
+++ configure
|
|
@@ -18556,7 +18556,7 @@ else
|
|
use_mac_sandbox="no"
|
|
fi
|
|
|
|
- if test "$use_mac_sandbox" == "yes"; then
|
|
+ if test "$use_mac_sandbox" = "yes"; then
|
|
|
|
$as_echo "#define USE_MAC_SANDBOX 1" >>confdefs.h
|
|
|