X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=ChangeLog;h=7dc5491349547083a6f87ffa147b4a43738ba9bd;hb=fd36f8c46bb76abaadc52321a03ee5f196676a0b;hp=ce6939ba1bb64410a4722ca65a77c39ce245a99c;hpb=ef8679ef6af0ba01d8dc43df577c5962037f13bd;p=mmh diff --git a/ChangeLog b/ChangeLog index ce6939b..7dc5491 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,25 @@ +2008-08-05 Eric Gillespie + + * uip/folder.c: chdir(nmhdir) in main rather than in dodir, which + is called many times. Drop the chdir in get_folder_info, which + served no purpose at all. If struct stat has d_type (BSD), use + that to skip processing (strcmp, stat, and so on) of message + files, mostly undoing the slow-down from the last change. + + * configure.in: Call CHECK_TYPE_STRUCT_DIRENT_D_TYPE. + + * aclocal.m4: Add CHECK_TYPE_STRUCT_DIRENT_D_TYPE from + GNU coreutils. + 2008-08-04 Eric Gillespie - * uip/folder.c: Simplify dodir/addir/addfold. + * uip/folder.c: Simplify dodir/addir/addfold. Dump hacky + over-optimization in addir that tried to avoid readdir after all + child directories had been read; this was also trying to support + symlinks to directories, but would have been failing (because + nlink may have gone to 0 with symlinks to directories remaining) + had the lstat usage been correct (lstat doesn't fail for normal + directories; should have used S_ISLNK). 2008-08-03 Peter Maydell