------------------------------------------------------------------------
r125 | boote | 2008-04-21 12:23:22 -0400 (Mon, 21 Apr 2008) | 3 lines

Make default compile static.


------------------------------------------------------------------------
r124 | boote | 2008-04-21 00:08:03 -0400 (Mon, 21 Apr 2008) | 3 lines

add --automake flag to libtoolize call.


------------------------------------------------------------------------
r123 | boote | 2008-04-20 10:09:05 -0400 (Sun, 20 Apr 2008) | 5 lines

Preparing for a release - will keep this under branches while messing with
autoconf to try and get a reasonable 'static' compile out of it - then
will cp to tags upon release.


------------------------------------------------------------------------
r122 | aaron | 2008-01-14 11:34:40 -0500 (Mon, 14 Jan 2008) | 3 lines

Fixes for the thrulay spec file


------------------------------------------------------------------------
r121 | boote | 2008-01-11 21:28:19 -0500 (Fri, 11 Jan 2008) | 7 lines

Added a check for a zero length read to the initial socket connection,
greeting messages were failing due to zero-length reads. (Just going
back to recv() again. This is still a bit of a hack, since there
is no guarantee that the full greeting message will be retrieved, but
at least 0 length reads are now checked.)


------------------------------------------------------------------------
r120 | boote | 2008-01-11 17:53:34 -0500 (Fri, 11 Jan 2008) | 8 lines

server.c:
    Modified so thrulay_server_start() does not fork to handle the 'last'
    request.

client.c:
    Modified a comment to allow bracket-matching in vim to work correctly.


------------------------------------------------------------------------
r119 | boote | 2007-06-22 21:16:01 -0400 (Fri, 22 Jun 2007) | 6 lines

Changing 'src' to 'thrulay' so #include references will work when using
thrulay from the the build directory.

jeff


------------------------------------------------------------------------
r118 | fedemp | 2007-02-01 04:23:21 -0500 (Thu, 01 Feb 2007) | 2 lines

Typo fixed.

------------------------------------------------------------------------
r117 | fedemp | 2007-02-01 04:19:39 -0500 (Thu, 01 Feb 2007) | 2 lines

Version updated to 0.9

------------------------------------------------------------------------
r116 | fedemp | 2006-08-20 15:30:19 -0400 (Sun, 20 Aug 2006) | 2 lines

More comments to the main select() loop.

------------------------------------------------------------------------
r115 | fedemp | 2006-08-20 15:23:22 -0400 (Sun, 20 Aug 2006) | 2 lines

Additional comments to some details of the main select() loop.

------------------------------------------------------------------------
r114 | fedemp | 2006-08-20 14:06:19 -0400 (Sun, 20 Aug 2006) | 2 lines

Confess it was me and update ChangeLog.

------------------------------------------------------------------------
r113 | fedemp | 2006-08-20 13:49:15 -0400 (Sun, 20 Aug 2006) | 2 lines

Close done items.

------------------------------------------------------------------------
r112 | fedemp | 2006-08-20 13:46:39 -0400 (Sun, 20 Aug 2006) | 12 lines

Use quantiles to report delay and jitter instead of min/max/avg. In
verbose mode, min/max/avg are also shown in reports.
Two quantile sequences are kept for each stream (one for per interval
reports and one for final reports) as well as a sequence for global
final statistics -unless just one stream is used, in which case only
two sequences are kept.

Added a new function (required_quantile_seqs) and two #defines to
handle quantile sequence numbers.

Added a new error code for errors in the quantile algorithm.

------------------------------------------------------------------------
r111 | fedemp | 2006-08-20 09:56:32 -0400 (Sun, 20 Aug 2006) | 3 lines

Updated calls to quantile functions (new sequence number parameter,
which is always 0 in the server).

------------------------------------------------------------------------
r110 | fedemp | 2006-08-20 09:54:50 -0400 (Sun, 20 Aug 2006) | 7 lines

Extend quantile functions so that more than 1 sequences can be handled
in parallel (required to compute delay and jitter in the thrulay
client if multiple streams are used). Most quantile functions now have
an extra parameter to specify what sequence must be
modified. quantile_init has an extra parameter to set the number of
sequences to be used.

------------------------------------------------------------------------
r109 | fedemp | 2006-08-19 16:56:23 -0400 (Sat, 19 Aug 2006) | 2 lines

Additional documentation and use 'const' wherever possible in the API.

------------------------------------------------------------------------
r108 | fedemp | 2006-08-19 15:21:41 -0400 (Sat, 19 Aug 2006) | 2 lines

Updated for recent releases of rpmbuild.

------------------------------------------------------------------------
r107 | fedemp | 2006-08-19 15:21:07 -0400 (Sat, 19 Aug 2006) | 2 lines

Updated to use return codes from the thrulay server functions.

------------------------------------------------------------------------
r106 | fedemp | 2006-08-19 15:20:05 -0400 (Sat, 19 Aug 2006) | 14 lines

Return codes added to all server API functions. Calls to exit() inside
the library have been replaced with return codes. Before daemonizing,
calls to error(ERR_FATAL,...) have been replaced with return codes
After daemonizing, calls to exit() have been replaced as well with
return codes (most of which will not be accessible unless the low
level thrulay_server_process_client function is used).

Additional checks replacing assert() calls and unchecked error
conditions.  New function, thrulay_server_strerror, to retrieve
descriptions of error return codes.

Documentation extended. New function in server.c, tcp_test (equivalent
to udp_test).

------------------------------------------------------------------------
r105 | fedemp | 2006-08-19 10:58:09 -0400 (Sat, 19 Aug 2006) | 2 lines

Report just the 5 metrics in the draft.

------------------------------------------------------------------------
r104 | fedemp | 2006-08-19 10:54:47 -0400 (Sat, 19 Aug 2006) | 2 lines

Check return codes of the client interface.

------------------------------------------------------------------------
r103 | fedemp | 2006-08-19 10:53:14 -0400 (Sat, 19 Aug 2006) | 15 lines

Return codes have been added to most of the client API functions.  New
function for the client API: thrulay_client_strerror. A new array of
char*, thrulay_client_error_s, holds the error strings, that can be
retrieved using thrulay_client_strerror. As a side effect, some
asserts have been removed and additional checks have been introduced.
Documentation of the API has been improved a bit.

The idea has been replacing error(ERR_FATAL,...) calls with return
codes that can be handled by the application using libthrulay, as it
does not seem very polite to exit() inside the library without giving
any opportunity of retrying or somehow handling the error.

See bwlib for an example in which bwctl control error messages are
generated. Another example is the thrulay command line tools.

------------------------------------------------------------------------
r102 | fedemp | 2006-08-19 10:52:44 -0400 (Sat, 19 Aug 2006) | 2 lines

Report just the 5 metrics from the draft unless verbose output is requested.

------------------------------------------------------------------------
r101 | fedemp | 2006-08-18 19:16:02 -0400 (Fri, 18 Aug 2006) | 5 lines

Include sys/select.h only if available (and assume select() is defined
somewhere else -sys/time.h for example on some HP-UX).

(udp_test): removed local variable graceful_termination, as it is not used.

------------------------------------------------------------------------
r100 | fedemp | 2006-08-18 19:14:21 -0400 (Fri, 18 Aug 2006) | 5 lines

(thrulay_udp_init): removed local variable addrlen, as it is not used
anymore.

(thrulay_tcp_start): use socklen_t instead of unsigned int.

------------------------------------------------------------------------
r99 | fedemp | 2006-08-18 19:12:30 -0400 (Fri, 18 Aug 2006) | 2 lines

Use GCC style C standard and warning flags only when gcc is detected.

------------------------------------------------------------------------
r98 | fedemp | 2006-08-18 11:39:40 -0400 (Fri, 18 Aug 2006) | 2 lines

set +x before running the autotools chain.

------------------------------------------------------------------------
r97 | fedemp | 2006-08-18 11:38:26 -0400 (Fri, 18 Aug 2006) | 2 lines

Suppress output if verbosity < 0.

------------------------------------------------------------------------
r96 | fedemp | 2006-08-18 11:37:35 -0400 (Fri, 18 Aug 2006) | 3 lines

Use PRIu64 for uint64_t variables in printf so as to avoid warnings on
64-bit platforms.

------------------------------------------------------------------------
r95 | fedemp | 2006-08-18 04:55:51 -0400 (Fri, 18 Aug 2006) | 2 lines

spec file for thrulay RPM packages.

------------------------------------------------------------------------
r94 | fedemp | 2006-08-17 15:52:17 -0400 (Thu, 17 Aug 2006) | 2 lines

Better comments and Doxygen tags.

------------------------------------------------------------------------
r93 | fedemp | 2006-08-17 15:51:05 -0400 (Thu, 17 Aug 2006) | 2 lines

Doxygen tags and new initialization interface.

------------------------------------------------------------------------
r92 | fedemp | 2006-08-17 15:50:04 -0400 (Thu, 17 Aug 2006) | 2 lines

Return 0 and fix for missing header warning.

------------------------------------------------------------------------
r91 | fedemp | 2006-08-17 15:49:26 -0400 (Thu, 17 Aug 2006) | 2 lines

Updated to new initialization interface.

------------------------------------------------------------------------
r90 | fedemp | 2006-08-17 15:48:28 -0400 (Thu, 17 Aug 2006) | 2 lines

A few tags for doxygen. Some return codes for the API.

------------------------------------------------------------------------
r89 | fedemp | 2006-08-17 08:06:20 -0400 (Thu, 17 Aug 2006) | 2 lines

A doxygen configuration file for thrulay.

------------------------------------------------------------------------
r88 | fedemp | 2006-08-17 08:04:40 -0400 (Thu, 17 Aug 2006) | 2 lines

Disable strippping of binaries on Solaris systems.

------------------------------------------------------------------------
r87 | fedemp | 2006-08-16 15:47:43 -0400 (Wed, 16 Aug 2006) | 4 lines

The ad hoc syslog system now handles unrestricted format strings.

Implementation of getrusage based on native Windows system calls.

------------------------------------------------------------------------
r86 | fedemp | 2006-08-16 14:58:11 -0400 (Wed, 16 Aug 2006) | 2 lines

Fixes for clean compilation with MinGW32.

------------------------------------------------------------------------
r85 | fedemp | 2006-08-16 13:28:06 -0400 (Wed, 16 Aug 2006) | 6 lines

Support for joining to a multicast group in UDP tests (new function:
is_multicast).

In functions quantile_alg_error and udp_test: Report errors in the
quantile algorithm only when packets_total > 0.

------------------------------------------------------------------------
r84 | fedemp | 2006-08-16 13:19:48 -0400 (Wed, 16 Aug 2006) | 4 lines

Support for sending test blocks to a multicast group with a given TTL.

Fixed RANDOM_MAX issue for Windows.

------------------------------------------------------------------------
r83 | fedemp | 2006-08-16 13:11:47 -0400 (Wed, 16 Aug 2006) | 2 lines

Rearrangement of checks for multicast structs.

------------------------------------------------------------------------
r82 | fedemp | 2006-08-16 13:11:14 -0400 (Wed, 16 Aug 2006) | 2 lines

New command line options for multicast.

------------------------------------------------------------------------
r81 | fedemp | 2006-08-16 13:10:55 -0400 (Wed, 16 Aug 2006) | 2 lines

Process new command line options for multicast support.

------------------------------------------------------------------------
r80 | fedemp | 2006-08-15 14:54:43 -0400 (Tue, 15 Aug 2006) | 2 lines

Include config.h.

------------------------------------------------------------------------
r79 | fedemp | 2006-08-15 14:11:55 -0400 (Tue, 15 Aug 2006) | 4 lines

Changes to enable cross-compilation to Windows (XP or later) using
MinGW32. Comments for the non-blocking loop. In windows, instead of
using fork, a thread is spawned for serving each client.

------------------------------------------------------------------------
r78 | fedemp | 2006-08-15 13:59:30 -0400 (Tue, 15 Aug 2006) | 3 lines

Updated to enable cross-compilation of the client for Windows (XP and
later) using MinGW32.

------------------------------------------------------------------------
r77 | fedemp | 2006-08-15 13:53:05 -0400 (Tue, 15 Aug 2006) | 5 lines

Implementation of functions sometimes missing (MinGW32), including
inet_ntop and gai_strerror. Fix for using recv/send instead of
read/write on sockets. Implementation of simple ad hoc syslog
mechanism (.log file) for systems without syslog.

------------------------------------------------------------------------
r76 | fedemp | 2006-08-15 13:47:06 -0400 (Tue, 15 Aug 2006) | 3 lines

Checks for additional headers and functions (most of them for
MinGW32). Checks for multicast structs. New --enable-multicast option.

------------------------------------------------------------------------
r75 | fedemp | 2006-08-15 13:44:54 -0400 (Tue, 15 Aug 2006) | 2 lines

Use ad hoc implementation of syslog when missing (Win32).

------------------------------------------------------------------------
r74 | fedemp | 2006-08-11 11:58:40 -0400 (Fri, 11 Aug 2006) | 2 lines

Use -v for verbosity and -V for version. Verbosity parameter added to the client and server API.

------------------------------------------------------------------------
r73 | fedemp | 2006-08-11 11:57:45 -0400 (Fri, 11 Aug 2006) | 2 lines

Report metrics as in the reporting draft.

------------------------------------------------------------------------
r72 | fedemp | 2006-08-10 14:07:26 -0400 (Thu, 10 Aug 2006) | 2 lines

Use sockaddr_storage instead of a 128 bytes long array.

------------------------------------------------------------------------
r71 | fedemp | 2006-08-10 14:06:49 -0400 (Thu, 10 Aug 2006) | 2 lines

Help on default block sizes fixed.

------------------------------------------------------------------------
r70 | fedemp | 2006-08-10 12:58:51 -0400 (Thu, 10 Aug 2006) | 2 lines

.spec.in for RPMs and default block size updated to 64kB.

------------------------------------------------------------------------
r69 | fedemp | 2006-08-01 07:01:18 -0400 (Tue, 01 Aug 2006) | 2 lines

Additional comments and some fixes for the sample reporting main().

------------------------------------------------------------------------
r68 | fedemp | 2006-07-26 14:30:41 -0400 (Wed, 26 Jul 2006) | 2 lines

Updated.

------------------------------------------------------------------------
r67 | fedemp | 2006-07-26 14:29:49 -0400 (Wed, 26 Jul 2006) | 2 lines

Get sample data from a file in the reporting main()

------------------------------------------------------------------------
r66 | fedemp | 2006-06-29 13:24:43 -0400 (Thu, 29 Jun 2006) | 2 lines

Ooops, removed extra call to thrulay_server_init.

------------------------------------------------------------------------
r65 | fedemp | 2006-06-29 13:05:01 -0400 (Thu, 29 Jun 2006) | 3 lines

Client API function names changed so that there are no conflicts/confussion
with server functions.

------------------------------------------------------------------------
r64 | fedemp | 2006-06-29 13:03:09 -0400 (Thu, 29 Jun 2006) | 4 lines

New thrulay server API added. thrulayd.c parses command line options
and relies on the server API for anything else. acl_allow_add added to
the server API, as well as defines for default port and window size.

------------------------------------------------------------------------
r63 | fedemp | 2006-06-28 12:00:35 -0400 (Wed, 28 Jun 2006) | 3 lines

thrulay.c and thrulayd.c now depend on libthrulay to implement the
client and server command line tools.

------------------------------------------------------------------------
r62 | fedemp | 2006-06-28 11:50:58 -0400 (Wed, 28 Jun 2006) | 2 lines

New separate files for client and server API.

------------------------------------------------------------------------
r61 | fedemp | 2006-06-28 09:11:07 -0400 (Wed, 28 Jun 2006) | 2 lines

Use libtool to build libthrulay.

------------------------------------------------------------------------
r60 | fedemp | 2006-06-18 13:30:01 -0400 (Sun, 18 Jun 2006) | 2 lines

Update release steps now that the "make dist..." objectives generated by automake can be used.

------------------------------------------------------------------------
r59 | fedemp | 2006-06-18 12:49:15 -0400 (Sun, 18 Jun 2006) | 2 lines

Made the minimal changes required to get the client to work on Win32 (cross-compiled with MinGW32).

------------------------------------------------------------------------
r58 | fedemp | 2006-06-15 16:03:07 -0400 (Thu, 15 Jun 2006) | 2 lines

perror+error calls changed to logging_log in code that runs daemonized.

------------------------------------------------------------------------
r57 | fedemp | 2006-06-15 11:18:27 -0400 (Thu, 15 Jun 2006) | 2 lines

Updated.

------------------------------------------------------------------------
r56 | fedemp | 2006-06-15 11:15:52 -0400 (Thu, 15 Jun 2006) | 2 lines

Added conditionally compiled main including a sample metrics computation loop and final reporting.

------------------------------------------------------------------------
r55 | fedemp | 2006-06-15 09:03:02 -0400 (Thu, 15 Jun 2006) | 2 lines

Added check for calloc failure in reordering_init.

------------------------------------------------------------------------
r54 | fedemp | 2006-06-14 12:52:36 -0400 (Wed, 14 Jun 2006) | 2 lines

For UDP tests: added server log at the end of connections. New function for TCP/UDP common end log stuff: connection_end_log.

------------------------------------------------------------------------
r53 | fedemp | 2006-06-14 12:07:55 -0400 (Wed, 14 Jun 2006) | 2 lines

Use automake in src/ and doc/.

------------------------------------------------------------------------
r52 | fedemp | 2006-06-14 12:05:16 -0400 (Wed, 14 Jun 2006) | 2 lines

Signedness fix in comparison.

------------------------------------------------------------------------
r51 | fedemp | 2006-06-12 11:25:21 -0400 (Mon, 12 Jun 2006) | 2 lines

Maximum reordering size can be set through reordering_init. Added reordering_exit.

------------------------------------------------------------------------
r50 | fedemp | 2006-06-10 16:04:08 -0400 (Sat, 10 Jun 2006) | 2 lines

Report jitter and delay as in draft-ietf-ippm-reporting

------------------------------------------------------------------------
r49 | fedemp | 2006-06-09 16:42:05 -0400 (Fri, 09 Jun 2006) | 2 lines

Man pages updated for new options, and minor fixes.

------------------------------------------------------------------------
r48 | fedemp | 2006-06-09 16:17:48 -0400 (Fri, 09 Jun 2006) | 2 lines

Generic metrics reporting stuff moved to new files: reporting.h and reporting.c.

------------------------------------------------------------------------
r47 | fedemp | 2006-06-07 12:22:02 -0400 (Wed, 07 Jun 2006) | 2 lines

Updated.

------------------------------------------------------------------------
r46 | fedemp | 2006-06-07 11:48:43 -0400 (Wed, 07 Jun 2006) | 2 lines

Save memory: allocate ((num_streams -1) * BLOCK_HEADER + server_block_size rather than num_streams*server_block_size.

------------------------------------------------------------------------
r45 | fedemp | 2006-06-07 11:16:40 -0400 (Wed, 07 Jun 2006) | 2 lines

Some Solaris and Linux report EPIPE instead of ECONNRESET.

------------------------------------------------------------------------
r44 | fedemp | 2006-06-07 08:26:41 -0400 (Wed, 07 Jun 2006) | 2 lines

Removed files that are generated by autoheader and automake. Makefile.in moved to Makefile.am

------------------------------------------------------------------------
r43 | fedemp | 2006-06-07 07:27:50 -0400 (Wed, 07 Jun 2006) | 2 lines

Added ChangeLog generated through cvs2cl

------------------------------------------------------------------------
r42 | fedemp | 2006-06-07 07:24:02 -0400 (Wed, 07 Jun 2006) | 2 lines

Non-blocking I/O in TCP test loop

------------------------------------------------------------------------
r41 | fedemp | 2006-06-06 14:29:09 -0400 (Tue, 06 Jun 2006) | 2 lines

Non-blocking I/O in test loop, test start and port allocation separated in API

------------------------------------------------------------------------
r40 | fedemp | 2006-06-06 04:07:37 -0400 (Tue, 06 Jun 2006) | 2 lines

Log CPU use by the daemon along with each test log record

------------------------------------------------------------------------
r39 | fedemp | 2006-06-05 13:42:01 -0400 (Mon, 05 Jun 2006) | 2 lines

Added two command line options: -h for help, and -v for version

------------------------------------------------------------------------
r38 | fedemp | 2006-06-05 13:37:37 -0400 (Mon, 05 Jun 2006) | 2 lines

Added command line options: -h for help, -v for version; -i0 disables intermediate reports.

------------------------------------------------------------------------
r37 | (no author) | 2005-12-10 22:25:55 -0500 (Sat, 10 Dec 2005) | 1 line

This commit was manufactured by cvs2svn to create branch 'fedemp'.
------------------------------------------------------------------------
r36 | shalunov | 2005-12-10 22:25:55 -0500 (Sat, 10 Dec 2005) | 2 lines

Microsoft Windows version of client (or both?); probably cross-compiled

------------------------------------------------------------------------
r35 | shalunov | 2005-11-15 18:07:49 -0500 (Tue, 15 Nov 2005) | 2 lines

Newly developed logo.

------------------------------------------------------------------------
r34 | shalunov | 2005-11-15 18:05:07 -0500 (Tue, 15 Nov 2005) | 2 lines

consider how and whether to support multicast

------------------------------------------------------------------------
r33 | shalunov | 2005-11-15 16:00:01 -0500 (Tue, 15 Nov 2005) | 2 lines

Use the text written for FreeBSD port blurb.

------------------------------------------------------------------------
r32 | shalunov | 2005-11-14 21:20:53 -0500 (Mon, 14 Nov 2005) | 2 lines

Web site blurb now in CVS.

------------------------------------------------------------------------
r31 | shalunov | 2005-11-14 21:06:15 -0500 (Mon, 14 Nov 2005) | 2 lines

send bug reports to thrulay-users@internet2.edu

------------------------------------------------------------------------
r30 | shalunov | 2005-11-11 12:50:12 -0500 (Fri, 11 Nov 2005) | 2 lines

Debian package stuff from David Goodwin.

------------------------------------------------------------------------
r29 | shalunov | 2005-10-19 22:16:55 -0400 (Wed, 19 Oct 2005) | 2 lines

Guess 9000-B MTU as jumbo-enabled Ethernet.

------------------------------------------------------------------------
r28 | shalunov | 2005-10-19 15:47:24 -0400 (Wed, 19 Oct 2005) | 2 lines

log CPU use by the daemon along with each test log record

------------------------------------------------------------------------
r27 | shalunov | 2005-10-18 15:09:59 -0400 (Tue, 18 Oct 2005) | 2 lines

make `-i0' disable intermediate reports

------------------------------------------------------------------------
r26 | shalunov | 2005-10-18 14:53:18 -0400 (Tue, 18 Oct 2005) | 2 lines

an option to show the version of thrulay and thrulayd

------------------------------------------------------------------------
r25 | shalunov | 2005-10-17 19:54:04 -0400 (Mon, 17 Oct 2005) | 2 lines

*** empty log message ***

------------------------------------------------------------------------
r23 | shalunov | 2005-10-17 19:32:49 -0400 (Mon, 17 Oct 2005) | 2 lines

Incrementing version number.

------------------------------------------------------------------------
r22 | shalunov | 2005-10-17 19:28:43 -0400 (Mon, 17 Oct 2005) | 2 lines

Getting rid of an extra noreturn (Linux GCC is nuts).

------------------------------------------------------------------------
r21 | shalunov | 2005-10-17 19:22:18 -0400 (Mon, 17 Oct 2005) | 2 lines

Linux compilation and warnings.

------------------------------------------------------------------------
r20 | shalunov | 2005-10-17 16:44:32 -0400 (Mon, 17 Oct 2005) | 2 lines

Releasing thrulay-0.7.

------------------------------------------------------------------------
r18 | shalunov | 2005-10-03 16:34:19 -0400 (Mon, 03 Oct 2005) | 4 lines

Give it non-phony targets in all (e.g., thrulay instead of client),
so that linking is conditional on modification.  (Linking was
unconditional.)

------------------------------------------------------------------------
r17 | shalunov | 2005-10-03 16:30:19 -0400 (Mon, 03 Oct 2005) | 2 lines

Documentation, authorization.

------------------------------------------------------------------------
r16 | shalunov | 2005-10-02 14:31:23 -0400 (Sun, 02 Oct 2005) | 2 lines

Turn on all reasonable compiler warnings.

------------------------------------------------------------------------
r15 | shalunov | 2005-10-02 14:08:14 -0400 (Sun, 02 Oct 2005) | 4 lines

Change release preparation instructions.  Primary change: instead
of whacking the repository in-place, tag and export.  This obviates
the need for ``rm -rf CVS'' bits in the various Makefile.in files.

------------------------------------------------------------------------
r14 | shalunov | 2005-10-02 13:44:22 -0400 (Sun, 02 Oct 2005) | 4 lines

Change thrulay-dev to thrulay-users as the bug reporting address.
(The hope is that this way, we might get some support from other users;
also, we might get others chime in with confirmations of bugs.)

------------------------------------------------------------------------
r13 | shalunov | 2005-10-02 13:34:34 -0400 (Sun, 02 Oct 2005) | 3 lines

``make install'' now installs man pages.  Plus, minor updates to README
as long as I was changing the instructions.

------------------------------------------------------------------------
r12 | shalunov | 2005-10-02 13:26:12 -0400 (Sun, 02 Oct 2005) | 2 lines

Remove a generated file (configure) from CVS.  (It's not part of the source.)

------------------------------------------------------------------------
r11 | shalunov | 2005-10-02 13:24:10 -0400 (Sun, 02 Oct 2005) | 4 lines

Change installation locations: thrulayd now goes to sbindir instead
of bindir, and thrulayd.1 is now known as thrulayd.8 and goes into
mandir8, rather than mandir1.

------------------------------------------------------------------------
r10 | shalunov | 2005-10-02 13:01:16 -0400 (Sun, 02 Oct 2005) | 2 lines

Commit minor textual fixes I had after release-06.

------------------------------------------------------------------------
r9 | shalunov | 2005-10-02 13:00:37 -0400 (Sun, 02 Oct 2005) | 2 lines

Move items not marked as done to the top.  Add Solaris.

------------------------------------------------------------------------
r8 | hliu | 2005-10-02 00:48:53 -0400 (Sun, 02 Oct 2005) | 2 lines

Change timing from us to ms.

------------------------------------------------------------------------
r7 | hliu | 2005-10-01 21:49:42 -0400 (Sat, 01 Oct 2005) | 3 lines

Changed release version number;
Removed  build prerequisite.

------------------------------------------------------------------------
r2 | hliu | 2005-10-01 21:18:08 -0400 (Sat, 01 Oct 2005) | 2 lines

Initial revision

------------------------------------------------------------------------
r1 | (no author) | 2005-10-01 21:18:08 -0400 (Sat, 01 Oct 2005) | 1 line

New repository initialized by cvs2svn.
------------------------------------------------------------------------
