Unfortunate bug introduced in 2.1.15 that broke generated firewall script
for iptables in case option "use iptables-restore" was on is fixed in this
release. Additional checks were added to the generated script for iptables
to improve error detection and make sure the GUI properly detects when it
terminates with error. Support for load balancing with PF was also added.
please see the ChangeLog if interested.
All patches except Makefile patches are no longer necessary.
While here, add -Wno-signed-char to quiet these warnings.
Also change INSTALLATION_DIRS to AUTO_MKDIRS, quiet pkglint
by setting INFO_FILES=yes.
I'm not sure about FUSE_VERSION vs. FUSE_USE_VERSION in different
implementations, so define FUSE_USE_VERSION from FUSE_VERSION if it
does not exist and use that.
2007-04-17 CHANGES:
- fixed a stupid bug that avoids mounting the root of a server
- documented the optional port for mounting a webdav server
- improved attribute caching for some special cases
pkgsrc change:
* Use INSTALLATION_DIRS
* Update HOMEPAGE.
Since changes are too many to write here, please refer pages linked from News
in http://tmail.rubyforge.org/.
Requested by minskim@ via private mail.
When running the start script in master mode, already accept incoming
connections. This makes the start script more useful when using more
clients than the default listen back log.
Changes:
*******************************************************************************
Version 1.6.4
*******************************************************************************
2008-01-23 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
* Workaround for a problem with the new automake AM_CONDITIONAL macro
from autotools-1.10. Thanks to Ingo Hofmann for helping with debugging
this one.
2008-01-22 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
* Added quoting to macros AC_CONFIG_AUX_DIR, AC_CONFIG_MACRO_DIR and
AC_CONFIG_SRCDIR in configure.ac. Also changed the name of the
auxiliary directory in AC_CONFIG_AUX_DIR to build-aux.
2008-01-22 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
* Fix for setsockopt() in Threadpool.c to allow more than one process
to join the multicast-group on OSX. Thanks to Ingo Hofmann.
2008-01-22 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
* Using defined(__OSX__) || defined(__APPLE__) instead of just
defined(__OSX__) in the code. Thanks to Ingo Hofmann and Chris
Pickel.
2008-01-21 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
* Fix for isFileInVirtualDir. Thanks to Peter Hartley for the patch.
2008-01-07 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
* Putting back a "defined(__OSX__)" that has been removed in the
previous *BSD patch. Thanks to Chris Pickel for pointing it out.
2008-01-07 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
* SF Patches Tracker [ 1865812 ] typo in docs comment
Submitted By: Hartmut Holzgraefe - hholzgra
typo in docs comment ACCAPTED instead of ACCEPTED in
@name UPNP_E_UNSUBSCRIBE_UNACCAPTED [-302]
Also, the documentation file name was mispelled and was corrected in
the Makefile.am.
Add first pile of patches for cross-compiling support.
This still depends on the packages being pre-installed to
the normal prefix, but otherwise works. Cross-compiling
needs pkg_install-20080126. While here, simplify configuration
and allow using one pkg_install installation for everything.
As a side effect remove the pkgdb limitation for NetBSD builds.
Add a message that tells users to check the configuration file
on updates.
-------------------------------
Bugs fixed:
* Fix problem with keyword expansion when using --use-internal-co.
Version 2.0.0 (15 August 2007)
------------------------------
New features:
* Add --use-internal-co to speed conversions, and make it the default.
* Add --retain-conflicting-attic-files option.
* Add --no-cross-branch-commits option.
* Add --default-eol option and deprecate --no-default-eol.
* RevisionRecorder hook allows file text/deltas to be recorded in pass 1.
* RevisionReader hook allow file text to be retrieved from RevisionRecorder.
* Slightly changed the order that properties are set, for more flexibility.
* Don't set svn:keywords on files for which svn:eol-style is not set.
* Implement issue #53: Allow --trunk='' for --trunk-only conversions.
Bugs fixed:
* Fix issue #97: Follow symlinks within CVS repository.
* Fix issue #99: cvs2svn tries to create a file twice.
* Fix issue #100: cvs2svn doesn't retrieve the right version.
* Fix issue #105: Conflict between directory and Attic file causes crash.
* Fix issue #106: SVNRepositoryMirrorParentMissingError.
* Fix missing command-line handling of --fallback-encoding option.
* Fix issue #85: Disable symbol sanity checks with in --trunk-only mode.
Improvements and output changes:
* Analyze CVS revision dependency graph, giving a more robust conversion.
* Improve choice of symbol parents when CVS history is ambiguous.
* In the case of clock skew to the past, resync forwards, not backwards.
* Treat timestamps that lie in the future as bogus, and adjust backwards.
* Gracefully handle tags that refer to nonexistent revisions.
* Check and fail if revision header appears multiple times.
* Gracefully handle multiple deltatext blocks for same revision.
* Be more careful about only processing reasonable *,v files.
* Improve checks for illegal filenames.
* Check if a directory name conflicts with a filename.
* When file is imported, omit the empty revision 1.1.
* If a non-trunk default branch is excluded, graft its contents to trunk.
* Omit the initial 'dead' revision when a file is added on a branch.
* Require --symbol-transform pattern to match entire symbol name.
* Treat files as binary by default instead of as text, because it is safer.
* Treat auto-props case-insensitively; deprecate --auto-props-ignore-case.
Miscellaneous:
* Add a simple (nonportable) script to log cvs2svn memory usage.
* Allow contrib/shrink_test_case.py script to try deleting tags and branches.
* Add --skip-initial-test option to contrib/shrink_test_case.py script.
Add bulkbuild-rebuild which can be used to build packages individually.
It assumes that all dependencies are built and the results of the scan
phase exists. That means it can be used after a bulk build to try to
rebuild a failing package. Fixes PR 37407.
When all jobs are processed in master mode, close the listen socket
and shutdown(2) all peers. Give them a second to close(2) the
connection themselve, so that the port remains usable on the master.
This is the standard compliant fix for PR 37002.