the build, understandably, may fail.
If the krb5 option is selected, apply the paths as found in the previous
revision of the Makefile.
Fixes the build under Linux.
options no longer exist in the current version of evolution.
It still doesn't build for me under Linux, but the spurious warnings about
unrecognised krb4 configure options are gone.
Shared directories can now be created independently by the pacakges
needing them and will be removed automatically by pkg_delete when empty.
Packages needing empty directories can use the @pkgdir command in PLIST.
Discussed and ok'd in thread starting at
http://mail-index.netbsd.org/tech-pkg/2009/06/30/msg003546.html
Evolution 2.26.2 2009-05-18
---------------------------
Bug fixes:
#471083 (bnc) - Do not allow deletion of system folders. (Chenthill)
#561312 - Fix recurrence issues (Chenthill)
#467659 - Fix description for send mail (Chenthill)
#578685 - Copy string. Avoids SIGSEGV (Sebastien Bacher)
#569507 - Don't translate gconf/key values (khaledh)
#574842 - Fix Catalan translation issue (Gil Forcada Codinachs)
#571272 - Possible leak (Milan Crha)
#573704 - Don't close dialog after error (Milan Crha)
#579306 - Fix crash on delete folder (Milan Crha)
#491755 - Sanitize values from GConf before using them (Milan Crha)
#579635 - Hide last junked message too from the non-junk folder (Milan Crha)
#579550 - Do not mark newly recognized Junk messages Read (Milan Crha)
#578355 - Store username in a source URL in CalDAV (Milan Crha)
#575242 – New composer window not autosaved until modification (Michel Dänzer)
#581032 – Some links can't be opened (Matthew Barnes)
#573170 - Add back support for vfolder of vfolders (Srinivasa Ragavan)
#580163 - Resize alarm notifier correctly (Ritesh Khadgaray)
#578478 – Composer shows not all "From" information (Matthew Barnes)
#582744 – CC field autofill doesn't work for replies (Matthew Barnes)
#578176 – "Send message to contact" does not honor "always BCC" (Matthew Barnes)
Updated translatios:
Ihar Hrachyshka (be)
Christian Kirbach (de)
Jorge Gonzalez (es)
Other fixes:
Fix win32 filename/uri issues (Fridrich Strba)
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.