~ubuntu-branches/ubuntu/precise/netatalk/precise

« back to all changes in this revision

Viewing changes to debian/README.Debian

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2010-01-23 05:08:37 UTC
  • mfrom: (8.2.8 sid)
  • Revision ID: james.westby@ubuntu.com-20100123050837-rh5465ophfkjpsn2
Tags: 2.0.5-3
* Fix replace/drop bogus and/or obsolete configure options:
  + Use --without-ssl-dir/--with-ssl-dir (not --with-openssl-dir/
    --without-openssl-dir). Closes: bug#565969, thanks to Fabian
    Greffrath.
  + Use --enable-tcp-wrappers (not --with-tcp-wrappers).
  + Use --disable-srvloc (not --disable-slp).
  + Drop --disable-logger (obsolete since 2.0.1).
  + Drop --with-mangling (apparently obsolete since 2.0 alpha 1).
  + Drop --with-nls-dir and --without-xfs (apparently obsolete).
* Autoreconfigure during build (since upstream does not enable
  maintainer-mode). Disable autotools-related patches. Build-depend on
  libtool, automake1.11 and autoconf. Closes: bug#559060, thanks to
  Cyril Brulebois and others.
* Add safety-check to fail build if accidentally linked against
  libssl. Thanks to Fabian Greffrath (see bug#565969).
* Disable atalkd by default, to not require supported network active
  at daemon start time. Closes: bug#565568, thanks to Kurt Roeckx.
  Add NEWS entry about the change.
* Build-depend on and enable hardening-includes.
* Fix adjust "See also" of manpages referring to afile or achfile.
* Set urgency=medium as earlier lack of explicit disabling openssl
  caused the package to violate licensing for some architectures, also
  affecting testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
Upgrading Problems
60
60
==================
61
61
 
62
 
This version of Netatalk uses Berkeley DB 4.7.
 
62
This version of Netatalk uses Berkeley DB 4.8.
63
63
 
64
 
Earlier releases used Berkeley DB 4.2.  As Netatalk does not
 
64
Earlier releases used Berkeley DB 4.7/4.2/older.  As Netatalk does not
65
65
automatically update its database, problems like volumes appearing empty
66
66
(bug #200373) or connections getting rejected (bug #533344) may occur.
67
67
 
76
76
    done
77
77
    find $volumedir/.AppleDB -name "__db.*" -exec rm '{}' ';'
78
78
    for db in `find $volumedir/.AppleDB -name "*.db"`; do \
79
 
      db4.7_load -f $db.data $db; \
 
79
      db4.8_load -f $db.data $db; \
80
80
    done
81
81
 
82
 
For both script and manual upgrade you need the packages libdb4.2-util
83
 
and db4.7-util installed.
 
82
For both script and manual upgrade you need the packages libdb4.8-util
 
83
and db4.2-util installed - or the equivalent for other versions.
84
84
 
85
85
If this does not work, you can just delete the database files, but
86
86
please note that this will destroy all stored meta information about
87
87
these files!
88
88
 
89
 
 -- Jonas Smedegaard <dr@jones.dk>  Mon, 16 Jun 2009 20:09:44 +0100
 
89
 -- Jonas Smedegaard <dr@jones.dk>  Tue, 01 Dec 2009 00:46:28 +0100