-----------------------------------------------------------------
Mon Jun 18 18:39:01 EDT 2001

Added feature: you can change the maximum file size that will be
mmap'ed with a configure option.  Specifying a maximum of zero means
that mmap won't be used.  You can conserve virtual memory this way.

-----------------------------------------------------------------
Sun Jun 17 17:40:43 EDT 2001

Using stdio's fwrite for buffered output in cdb_make stuff.

-----------------------------------------------------------------
Sat Jun 16 13:57:16 EDT 2001

Added feature: build process now includes more sophisticated
dependency juggling.  

This is most noticed with headers, e.g., after building everything, if
you change cdb_seq.h and run "make aux", then the files depending on
that header will be rebuilt: missing.o; cdb_seq.o; viewdb.o; and
viewdb.  :)

Some unneeded complexity has been removed from the build process: aux
no longer has its own configure script.

The object files that are shared between integrit itself and the
auxiliary programs is now in a library, "libintegrit.a".

Added configure option for specifying install script to use if
autoconf finds one that doesn't really work (e.g., Stata's "install"
program was in my path once).  Updated hashtbl's "make install"
stuff to use install.

Added feature: now known and current databases can be specified on the
command line, overriding the settings in the configuration file.  This
feature is for sysadmins who want to use the same configuration file
on many similar hosts.

-----------------------------------------------------------------
Fri Jun 15 20:38:18 EDT 2001

The hashtbl library has two related new features: a "foreach" feature,
where a callback can be executed on each element in the hash table,
and an optional "destroy item" callback.

The callback for destroying items allows the caller to store complex
data structures in the hash table and then pass a pointer to a
specialized cleanup routine to hashtbl_free.

Auxiliary tools now build properly with leak detection turned on.

-----------------------------------------------------------------
Thu Jun 14 13:45:58 EDT 2001

Big changes: removed cdb-0.75 from integrit.  integrit now uses its
own cdb routines and some modified versions of DJB's public domain
sources.

integrit's use of openssl has been removed.  integrit now uses md5 and
sha1 checksums adapted from those of gnupg-1.0.6.

Memory-leak finding support has been added to the auxiliary tools. 

Miscellaneous cleaning up.

Changing major version number to two.

New feature: using -q and -v flags to change verbosity level does
something now: lowering the level with "-q" eliminates the pre-amble
in the human-readable report.

-----------------------------------------------------------------
Wed Feb 21 22:43:59 EST 2001

Eliminated race condition pointed out by lumpy@9mm.com: file could
change from regular file to non-regular file between lstat and open. 

Made file tree walker more robust in that it silently ignores files
that disappear between the readdir call and the lstat call.

-----------------------------------------------------------------
Mon Feb 19 12:59:18 EST 2001

Split file stat & checksum info for missing files onto two lines, to
be consistent with the rest of the output and to make the output more
readable (less wide).

-----------------------------------------------------------------
Sun Feb 18 13:15:59 EST 2001

Big bugfix: byte order issues were making cdb_seq routines fail on big
endian architectures (Sparc was the one tested).  By using cdb's
uint32_unpack when reading in numbers from the cdb file, the
byte-order works out correctly.

-----------------------------------------------------------------
Sun Feb 18 03:22:14 EST 2001

Adding file stat and checksum information for missing files to
human-readable output.

-----------------------------------------------------------------
Sun Feb 18 01:55:48 EST 2001

Making short reads in cdb_seq_get and cdb_seq_getkey an error.

-----------------------------------------------------------------
Sun Feb 18 01:13:32 EST 2001

Reporting permissions of symlinks as "sym" instead of "777".

-----------------------------------------------------------------
Tue Feb 13 00:42:18 EST 2001

adding rpm support.  Gyepi SAM <gyepi@peanutpress.com> is the rpm
packager.

-----------------------------------------------------------------
Wed Feb  7 22:59:10 EST 2001

incrementing minor version number.  Now it's v.1.06.

when reporting new files, information about the new files is
included. 

-----------------------------------------------------------------
Sat Jan 20 12:28:43 EST 2001

changing conditionally compiled stuff from platform-oriented to more
specific, feature-oriented criteria, capitalizing on
autoconf-generated info.

e.g., prefer "#if HAVE_STDINT_H" 
  to "#if ! defined(__FreeBSD__) && ! defined(__sun)".

-----------------------------------------------------------------
Wed Jan 17 21:28:40 EST 2001

releasing 1.05.02-beta

With the help of Jos Backus, improving the portability of integrit to
the Solaris platform.

Release files are now signed with my public key.

-----------------------------------------------------------------
Fri Jan 12 19:45:30 EST 2001

In anticipation of a stable release, binaries are stripped on
installation when the package is configured without the --enable-debug
option. 

Documentation has been updated.

-----------------------------------------------------------------
Thu Jan 11 00:10:55 EST 2001

New auxiliary program: i-ls.

Improved install build process has better make logic and uses BSD
install instead of cp.

changing version number to 1.05

-----------------------------------------------------------------
Sun Dec 31 17:47:42 EST 2000

Finally made hashtbl into a standalone library.  

This cleans up dependencies and makes hashtbl useful to users outside
the context of integrit.

changing version number to 1.04

-----------------------------------------------------------------
Thu Dec 28 14:06:53 EST 2000

new program: i-viewdb (in the aux directory) can be used to view
integrit databases.

changing version number to 1.03

-----------------------------------------------------------------
Thu Dec 21 13:49:00 EST 2000

big bugfix: strcpy in options.c's do_rule was the reason for dmalloc
	    and Boehm gc's complaints about smashed objects

	    changed to memcpy  :)  Let's hear it for memory debuggers
	    plus C!

-----------------------------------------------------------------
Tue Dec 19 17:20:29 EST 2000

some of the changes for version 1.02:

    -- debugging and memory leak checking have become configure
       options

    -- bugfixes

    -- comprehensive human-readable format documented in manpage

