1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
|
ChangeLog
=========
This file contains a listing of modifications to libast in CVS on a
per-commit basis. Dates are included, as are the names and userid's
of the people making the changes.
Contributors:
mej - Michael Jennings ("KainX") <mej@eterm.org>
----------------------------------------------------------------------
Thu Nov 9 19:09:48 PST 2000 Michael Jennings (mej)
Added name- and version-setting functions since we can't just use
PACKAGE and VERSION any more.
----------------------------------------------------------------------
Thu Nov 9 19:19:31 PST 2000 Michael Jennings (mej)
It usually helps if you finish writing the code BEFORE you commit it.
----------------------------------------------------------------------
Thu Nov 16 16:38:55 PST 2000 Michael Jennings (mej)
Insure++ found a small logic error here that could result in a tiny
leak under certain circumstances.
----------------------------------------------------------------------
Tue Jan 2 18:22:25 PST 2001 Michael Jennings (mej)
Added file.c for any file routines I write. The first one is a secure
temp file generator. If portability issues arise from non-POSIX
systems, they will be addressed here.
----------------------------------------------------------------------
Mon May 7 19:08:45 PDT 2001 Michael Jennings (mej)
I have created a testbed for libast. You can now run "make test" to
run a series of tests which will test some of the functionality of the
library. I didn't finish all the tests I'll eventually have; I just
wanted to get the stuff that's immediately important.
I also added a new split() function, which functions somewhat like its
Perl counterpart, although there are differences. This function will
be used in the remaining Eterm work I must do before release.
----------------------------------------------------------------------
Mon May 7 22:16:11 PDT 2001 Michael Jennings (mej)
Moved chomp() to libast. It's awfully handy.
----------------------------------------------------------------------
Tue May 8 19:51:51 PDT 2001 Michael Jennings (mej)
Added two more convenience functions: join(), also borrowed from
Perl, and free_array() for freeing lists. I also threw in a USE_VAR()
macro for getting rid of bogus unused variable warnings.
----------------------------------------------------------------------
Wed May 9 17:20:46 PDT 2001 Michael Jennings (mej)
Better handling of NULL values all around.
----------------------------------------------------------------------
Thu May 17 10:27:02 PDT 2001 Michael Jennings (mej)
Fixed "make distcheck."
----------------------------------------------------------------------
Mon Jun 11 16:57:40 PDT 2001 Michael Jennings (mej)
I moved the config file code from Eterm to libast. I also relocated
some of the generic macros (MIN(), MAX(), BOUND(), etc.). Version up
to 0.3 now.
----------------------------------------------------------------------
Fri Jun 15 16:50:54 PDT 2001 Michael Jennings (mej)
Cleaned up spec file in preparation for release.
----------------------------------------------------------------------
Fri Jun 15 17:31:34 2001 Michael Jennings (mej)
Converted the ChangeLog to Avalon's log format. Yay! :-)
----------------------------------------------------------------------
Fri Jun 15 23:40:45 2001 Michael Jennings (mej)
Moved the parsing of each config file line into a separate function.
You'll see why in a moment.
----------------------------------------------------------------------
Mon Jun 18 13:49:24 2001 Michael Jennings (mej)
Oops. ChangeLog entries were ending up in the bit-bucket. Fixed and
re-synced. :)
----------------------------------------------------------------------
Fri Jun 29 10:02:34 2001 Michael Jennings (mej)
I think we can call this finished.
----------------------------------------------------------------------
Mon Jul 23 18:01:37 2001 Michael Jennings (mej)
Well that was dumb. Comments are supposed to be *ignored*. :P
----------------------------------------------------------------------
Mon Jul 23 23:25:13 2001 Michael Jennings (mej)
Damnit. It was screwing up on blank lines too. >:I
----------------------------------------------------------------------
Sat Sep 22 09:24:41 2001 Michael Jennings (mej)
Fixed a compilation issue on some systems where libX11 would not be
linked in with the test program. This is libast 0.4.
----------------------------------------------------------------------
Mon Jan 21 18:02:20 2002 Michael Jennings (mej)
Don't try this at home. This package has been discombobulated by
trained professionals.
----------------------------------------------------------------------
Tue Feb 12 00:03:12 2002 Michael Jennings (mej)
Please ignore the warnings during compile. I didn't want to check
this in just yet, but I kinda broke Eterm and committed it. :(
----------------------------------------------------------------------
Tue Feb 12 00:23:36 2002 Michael Jennings (mej)
...and then I came to my senses.... :-P
----------------------------------------------------------------------
Tue Feb 12 10:40:37 2002 Michael Jennings (mej)
Still not fleshed out, but at least the warnings are gone. :-)
----------------------------------------------------------------------
Sun Feb 17 12:10:59 2002 Michael Jennings (mej)
Hopefully now this will make more sense. The string class is now
fleshed out...along with a complete set of unit tests. :)
----------------------------------------------------------------------
Mon Feb 18 21:54:25 2002 Michael Jennings (mej)
Mmmmm...reusability. :-)
----------------------------------------------------------------------
Sun Mar 3 01:44:51 2002 Michael Jennings (mej)
Added precision to the profiling stuff, and threw in the beginnings of
support for interface classes.
----------------------------------------------------------------------
Thu Apr 4 20:45:30 2002 Michael Jennings (mej)
Lots of updates. This should compile, but if it doesn't, don't blame
me. (Well, blame me, just don't whine at me.) :-)
Also a bit of a design doc here...hopefully it will clarify some
things.
----------------------------------------------------------------------
Thu Apr 4 21:13:01 2002 Michael Jennings (mej)
Re-indenting code.
----------------------------------------------------------------------
Thu Apr 4 22:24:36 2002 Michael Jennings (mej)
Oops...
----------------------------------------------------------------------
Thu Apr 11 18:03:46 2002 Michael Jennings (mej)
The list interface is complete (for now) as is its first
implementation: the linked_list class. Unit tests are also in.
----------------------------------------------------------------------
Thu Apr 11 18:15:11 2002 Michael Jennings (mej)
Fix "make distcheck"
----------------------------------------------------------------------
Thu Apr 11 23:47:26 2002 Michael Jennings (mej)
Not needed...
----------------------------------------------------------------------
Mon Apr 15 23:50:40 2002 Michael Jennings (mej)
A doubly-linked list implementation of the list interface.
----------------------------------------------------------------------
Tue Apr 16 16:23:42 2002 Michael Jennings (mej)
Another obvious list implementation...an array.
----------------------------------------------------------------------
Fri Apr 19 18:35:21 2002 Michael Jennings (mej)
Working tokenizer. The question is, how much do I need to add in the
way of flexibility.... Shell-style parsing? Null-field support?
*ponders*
----------------------------------------------------------------------
Fri Apr 26 15:13:27 2002 Michael Jennings (mej)
Working on some new stuff here, and just wanted to get this stuff in
in case my laptop croaks or something. The new code doesn't work,
but at least it doesn't break the compile. :)
----------------------------------------------------------------------
Fri Apr 26 15:24:02 2002 Michael Jennings (mej)
I spoke too soon....
----------------------------------------------------------------------
Mon Apr 29 15:25:01 2002 Michael Jennings (mej)
The options parser seems to be working now. It's fairly extensible
and fixes a lot of the problems with the old one. It was rewritten
more or less from scratch.
----------------------------------------------------------------------
Tue Apr 30 22:17:27 2002 Michael Jennings (mej)
I really should be more careful when creating test cases. This
should fix the parsing of boolean options with values.
----------------------------------------------------------------------
Wed May 1 23:21:23 2002 Michael Jennings (mej)
Fleshed out the URL class.
----------------------------------------------------------------------
Tue May 7 16:37:40 2002 Michael Jennings (mej)
A few small bugfixes and some touchups. Also work on the socket
object.
----------------------------------------------------------------------
Tue May 21 00:15:37 2002 Michael Jennings (mej)
Fixed a number of memory leaks in both the testing code and the object
classes themselves.
Also rearranged some header stuff and created a few new helper macros
for object declarations.
----------------------------------------------------------------------
Wed May 22 00:16:31 2002 Michael Jennings (mej)
Brought the performance tests up to date and cleaned up some memory
leaks in them.
----------------------------------------------------------------------
Wed May 22 08:59:38 2002 Michael Jennings (mej)
Stupid typo. Doing too much perl, I guess. cpp uses "#elif," not
"#elsif."
----------------------------------------------------------------------
Sun May 26 22:37:43 2002 Michael Jennings (mej)
Updated performance testing to be scaled. The default is a quicker
performance test than before, but now we can also choose to run
anywhere from scratching the surface to a very thorough pounding.
----------------------------------------------------------------------
Sun Jun 9 14:16:38 2002 Michael Jennings (mej)
Return on failed assert.
----------------------------------------------------------------------
Sat Jul 13 23:26:12 2002 Michael Jennings (mej)
New function, version_compare(), which accurately compares package
version numbers. Take a look at the various test cases to see what
kinds of comparisons it can accurately make, and if you see any that
aren't there, let me know.
----------------------------------------------------------------------
Fri Jul 26 00:12:25 2002 Michael Jennings (mej)
Mmmm, sockets that connect. :)
----------------------------------------------------------------------
Fri Jul 26 16:52:40 2002 Michael Jennings (mej)
More socket work. Also, permit muting of error/warning messages by
supplying a NULL value for the program name.
----------------------------------------------------------------------
Tue Jul 30 17:34:38 2002 Michael Jennings (mej)
Send/receive on the socket works now. Also cleaned up the show method
for strings to eliminate the 4K length limit.
The current socket test will actually download the HTML for my home
page. Uncomment the SPIF_SHOW() call in test_socket() to see it work.
----------------------------------------------------------------------
Wed Jul 31 17:49:17 2002 Michael Jennings (mej)
Added the _reverse() and _to_array() routines to all 3 list classes
(finally). Also added unit tests for those.
The tests for the socket code no longer download my home page. Now,
I create a listening socket and a sending socket for a TCP/IP and a
UNIX socket. Then I send/receive data across the socket and compare
what I received with what I sent. Self-contained is better. :-)
----------------------------------------------------------------------
Sun Aug 4 20:11:38 2002 Michael Jennings (mej)
Did a complete overhaul of the configure.in script. Moved everything
to macros in libast.m4, which is now installed by the package. That
will facilitate easier development of libast-based programs.
Also added the beginnings of a regexp class with support for PCRE,
POSIX-, and BSD-style regular expressions.
----------------------------------------------------------------------
Sun Aug 4 22:38:47 2002 Michael Jennings (mej)
Apparently shared library building breaks if AC_PROG_CC isn't directly
in configure.in.... :(
----------------------------------------------------------------------
Sun Aug 4 22:47:33 2002 Michael Jennings (mej)
Fix the cache variable name.
----------------------------------------------------------------------
Sat Aug 10 12:06:50 2002 Michael Jennings (mej)
Undefined symbol fix. Got overzealous with my s///.
----------------------------------------------------------------------
Tue Aug 13 21:38:04 2002 Michael Jennings (mej)
Working implementation of a regular expression object which supports
(and abstracts) PCRE, POSIX, or BSD regular expression functionality.
Also fixed some bugs with the list code and the cpp stuff.
----------------------------------------------------------------------
Tue Aug 13 22:47:45 2002 Michael Jennings (mej)
Oops, disable those old functions for now.
----------------------------------------------------------------------
Mon Aug 19 21:02:56 2002 Michael Jennings (mej)
Added a macro to permit client apps a simple way to detect libast.
----------------------------------------------------------------------
Wed Sep 25 00:01:29 2002 Michael Jennings (mej)
Patch from Kirby Kuehl <kkuehl@cisco.com> for compilation on FreeBSD.
----------------------------------------------------------------------
Mon Sep 30 11:53:59 2002 Michael Jennings (mej)
Final commit for release of libast 0.5.
----------------------------------------------------------------------
Fri Oct 25 15:07:21 2002 Michael Jennings (mej)
Patch from Darren Stuart Embry <dse@webonastick.com> to fix building
on Debian systems with ash installed.
----------------------------------------------------------------------
Tue Nov 5 14:57:46 2002 Michael Jennings (mej)
Solaris fixes (I hope) thanks to Kevin Doherty <kdoherty@uu.net>.
----------------------------------------------------------------------
Mon Dec 30 17:49:43 2002 Michael Jennings (mej)
I added a new interface, this one called a "vector." The difference
between a vector and a list is that a vector, as the name implies, is
guaranteed to be "pointing in one direction," i.e. ordered. This
interface should be used in preference to the "list" interface for
ordered lists, specifically where search speed is vastly more
important than insertion/deletion speed.
The array implementation is now doing double-duty, as it implements
both the list and the vector interfaces.
Most of an AVL tree implementation is included in this commit as well.
Brian Schenkenfelder <brians@nplus1.net> graciously offered me an AVL
tree implementation that he'd written awhile back, which I modified to
use the libast semantics. Unfortunately, he never implemented the
removal code, so I'm hoping that some kind soul who has had a data
structures class more recently than I have will jump in and finish it
for me. (*hint hint*) :-)
----------------------------------------------------------------------
Mon Dec 30 18:10:42 2002 Michael Jennings (mej)
Pass "make distcheck" please and thank you. :)
----------------------------------------------------------------------
Mon Dec 30 18:26:55 2002 Michael Jennings (mej)
Update spec file.
----------------------------------------------------------------------
Thu Feb 20 00:44:26 2003 Michael Jennings (mej)
The beginnings of doxygen documentation.
----------------------------------------------------------------------
Sun Feb 23 22:00:55 2003 Michael Jennings (mej)
Still working on the documentation. If you run "doxygen" from the
top-level directory, you can see what's there so far.
At some point, I'll be needing a logo. So if you're artistically
inclined, feel free to take a stab at one. :)
----------------------------------------------------------------------
Fri Mar 7 23:52:30 2003 Michael Jennings (mej)
Definitely making progress on the documentation, but there's still a
long way to go.
----------------------------------------------------------------------
Sat Mar 8 00:01:20 2003 Michael Jennings (mej)
Let's try not to break stuff, shall we?
----------------------------------------------------------------------
Mon Mar 17 16:27:53 2003 Michael Jennings (mej)
More work on docs.
----------------------------------------------------------------------
Tue Apr 1 23:07:15 2003 Michael Jennings (mej)
More documentation work. libast.h is almost finished.
----------------------------------------------------------------------
Fri Apr 4 22:59:45 2003 Michael Jennings (mej)
Finally finished documenting libast.h.
----------------------------------------------------------------------
Tue Apr 8 17:14:32 2003 Michael Jennings (mej)
Finished documenting libast_internal.h. Also some 64-bit cleanliness
fixes.
----------------------------------------------------------------------
Thu Apr 10 17:54:19 2003 Michael Jennings (mej)
Docs for some of the .c files.
----------------------------------------------------------------------
Fri Apr 11 17:10:15 2003 Michael Jennings (mej)
Completed documentation of the memory management system.
----------------------------------------------------------------------
Mon Jun 16 20:43:43 2003 Michael Jennings (mej)
Additional documentation.
Added support for versions containing "rc."
----------------------------------------------------------------------
Fri Jun 27 17:53:29 2003 Michael Jennings (mej)
Starting in on the docs for the object system. Yum.
----------------------------------------------------------------------
Tue Jul 1 15:50:57 2003 Michael Jennings (mej)
Finished the type docs. Still working on the object docs.
----------------------------------------------------------------------
Thu Jul 3 15:27:36 2003 Michael Jennings (mej)
More object docs.
----------------------------------------------------------------------
Thu Jul 3 23:37:45 2003 Michael Jennings (mej)
Forgot to fix these before committing. :(
----------------------------------------------------------------------
Wed Jul 9 19:49:39 2003 Michael Jennings (mej)
Some minor rearranging.
----------------------------------------------------------------------
Thu Oct 30 16:03:29 2003 Michael Jennings (mej)
Make SPIF_STR_STR() convenience macro *always* return a string, even
if the str object is NULL.
----------------------------------------------------------------------
Thu Oct 30 18:12:35 2003 Michael Jennings (mej)
Added support for object "properties." A property is a member
variable with corresponding get/set methods.
I'll probably flesh this out more as I use it more.
----------------------------------------------------------------------
Fri Oct 31 15:21:53 2003 Michael Jennings (mej)
Fixes to string class find/splice routines.
Added SPIF_DEFINE_PROPERTY_FUNC_NONOBJ() macro for defining get/set
methods of a property which is not an object. It should be used in
place of SPIF_DEFINE_PROPERTY_FUNC() for spif_*_t types that are not
objects, such as spif_int32_t and spif_sockport_t.
----------------------------------------------------------------------
Sat Nov 1 13:56:22 2003 Michael Jennings (mej)
Documentation updates for doxygen 1.3.x.
----------------------------------------------------------------------
Wed Nov 5 15:05:35 2003 Michael Jennings (mej)
Oops. Forgot to fix a couple.
----------------------------------------------------------------------
Wed Nov 5 15:13:24 2003 Michael Jennings (mej)
Let's try that again, shall we?
----------------------------------------------------------------------
Mon Nov 10 14:28:09 2003 Michael Jennings (mej)
Added assertions/requirements for string member functions.
Changed pointer printouts to %010p instead of %8p, since the latter
didn't account for the possibility of a leading "0x".
Fixed typos in hex_dump().
----------------------------------------------------------------------
Tue Nov 18 23:15:59 2003 Michael Jennings (mej)
Added D_*_IF macros for doing debugging conditionals more cleanly.
Removed the bogus "next" member function from the array and vector
interface classes.
Fleshed out the iterator interface and implemented it for arrays.
Fixed stupid mistake that made property functions overly type-strict.
Cleaned up the "show" member functions.
Added a routine for testing a regexp vs. a C string.
Property-ized the URL class objects.
----------------------------------------------------------------------
Wed Nov 19 17:39:01 2003 Michael Jennings (mej)
Added linked_list and dlinked_list implementations of the vector
interface.
Added iterator functionality for linked_list and dlinked_list.
Added unit tests for the above.
----------------------------------------------------------------------
Fri Nov 21 16:39:23 2003 Michael Jennings (mej)
Tasty new goodies thanks to Graphviz.
----------------------------------------------------------------------
Fri Nov 21 18:40:52 2003 Michael Jennings (mej)
Added more docs to obj.c. I need to go back and be more verbose on
some things, though.
These can be viewed online at http://www.eterm.org/libast/ for those
who'd like to get a sneak peak at them. Please report any obvious
errors, typos, etc. Those with developer access, feel free to
contribute or correct any errors or inconsistencies you find.
----------------------------------------------------------------------
Sun Nov 23 15:57:55 2003 Michael Jennings (mej)
Cleanups required by doxygen 1.3.x.
----------------------------------------------------------------------
Wed Nov 26 17:18:20 2003 Michael Jennings (mej)
Added sysdefs.h so that client programs who don't employ some/all of
the AST_* m4 macros can still get all the #define's they need for the
auto* stuff.
----------------------------------------------------------------------
Wed Nov 26 18:49:32 2003 Michael Jennings (mej)
Oops. Forgot the most important part! :-P
----------------------------------------------------------------------
Wed Nov 26 21:07:16 2003 Michael Jennings (mej)
Working on cleaning up namespace issues.
----------------------------------------------------------------------
Thu Nov 27 00:22:16 2003 Michael Jennings (mej)
More namespace cleaning. Just one more set to go.
----------------------------------------------------------------------
Tue Dec 9 21:53:50 2003 Michael Jennings (mej)
Add --libs flag to libast-config.
----------------------------------------------------------------------
Fri Dec 12 22:01:42 2003 Michael Jennings (mej)
Finished up namespace cleanups.
----------------------------------------------------------------------
Sat Jan 10 16:12:42 2004 Michael Jennings (mej)
Step #1: Update copyright statements.
Step #2: ???
Step #3: Profit.
----------------------------------------------------------------------
Wed Jan 21 18:19:49 2004 Michael Jennings (mej)
Adding hash functions in preparation for a hash table implementation.
----------------------------------------------------------------------
Thu Jan 22 20:42:40 2004 Michael Jennings (mej)
Added a few new hashes.
Fixed a typo in the old hashes.
LibAST-ized the hash tests and made new performance tests.
Anybody care to comment on the validity of my performance tests? All
6 algorithms end up with pretty much the same results. Do I need to
use a dictionary instead of random "words?" That's kinda what I'm
thinking....
----------------------------------------------------------------------
Thu Jan 22 22:35:43 2004 Michael Jennings (mej)
Fixed the Imlib2 linking problem pointed out by Mike Frysinger
<vapier@gentoo.org>.
Applied kwo's libast-config.patch. Note that this patch breaks the
libast compile. I'll have to fix it tomorrow.
----------------------------------------------------------------------
Fri Jan 23 01:42:05 2004 Michael Jennings (mej)
It's tomorrow...and it's fixed.
----------------------------------------------------------------------
Sat Jan 24 13:54:02 2004 Michael Jennings (mej)
Added map interface (unimplemented) and a paired object class.
----------------------------------------------------------------------
Fri Jan 30 17:55:47 2004 Michael Jennings (mej)
Working on adding assertions/requires for NULL object checks.
Also making sure list elements can be NULL so insert_at() can resize
a list.
----------------------------------------------------------------------
Mon Feb 2 17:22:42 2004 Michael Jennings (mej)
More cleanups. And yes, I know "make test" doesn't work.
----------------------------------------------------------------------
Tue Feb 3 18:18:32 2004 Michael Jennings (mej)
Cleanups are done. Almost done with the NULL handling for lists too.
----------------------------------------------------------------------
Wed Feb 4 10:53:04 2004 Michael Jennings (mej)
Should be all fixed now.
----------------------------------------------------------------------
Wed Feb 4 17:24:56 2004 Michael Jennings (mej)
Some test improvements.
----------------------------------------------------------------------
Thu Feb 5 16:31:43 2004 Michael Jennings (mej)
Plugged a few leaks and cleaned up one uninitialized parameter
problem.
----------------------------------------------------------------------
Mon Feb 23 16:52:13 2004 Michael Jennings (mej)
Removed bogus assertion.
Added map_if.h to install.
----------------------------------------------------------------------
Mon Mar 1 14:29:13 2004 Michael Jennings (mej)
AVL tree removal work-in-progress.
----------------------------------------------------------------------
Mon Mar 1 14:52:12 2004 Michael Jennings (mej)
Dumb-duh-dumb-dumb-DUMB!
----------------------------------------------------------------------
Mon Mar 1 21:22:21 2004 Michael Jennings (mej)
New SRPM
----------------------------------------------------------------------
Wed Mar 3 12:25:22 2004 Michael Jennings (mej)
New and improved autogen stuff. Prefers autoconf 2.13 and automake
1.4, but it's also been tested with autoconf 2.57 and automake 1.6.3.
----------------------------------------------------------------------
Wed Mar 10 17:15:14 2004 Michael Jennings (mej)
Working map implementation using the linked_list class.
Added some new string functions.
----------------------------------------------------------------------
Wed Mar 10 17:58:14 2004 Michael Jennings (mej)
Added array and dlinked_list implementations of the map interface.
----------------------------------------------------------------------
Wed Mar 10 18:05:28 2004 Michael Jennings (mej)
Fix "make distcheck"
----------------------------------------------------------------------
Tue Jun 29 17:14:13 2004 Michael Jennings (mej)
Some small fixes suggested by Charlie Gordon <gmane@chqrlie.org>.
Minor build tweaks...updated to new release number.
----------------------------------------------------------------------
Tue Jun 29 17:23:34 2004 Michael Jennings (mej)
Oops, forgot some re-ordering.
----------------------------------------------------------------------
Fri Jul 16 19:20:48 2004 Michael Jennings (mej)
Working on cleaning some things up for portability and C99-compliance.
----------------------------------------------------------------------
Tue Jul 20 18:30:54 2004 Michael Jennings (mej)
Tasty treats!
----------------------------------------------------------------------
Wed Jul 21 18:16:43 2004 Michael Jennings (mej)
Mmmm, beefy.
----------------------------------------------------------------------
Wed Jul 21 22:48:14 2004 Michael Jennings (mej)
More cleanups and fixed compile problems.
----------------------------------------------------------------------
Fri Jul 23 17:36:45 2004 Michael Jennings (mej)
Finally we have strict C99 compliance.
----------------------------------------------------------------------
Thu Aug 19 17:23:32 2004 Michael Jennings (mej)
Patch from Roland Illig <roland.illig@gmx.de> to fix m4 quoting.
----------------------------------------------------------------------
Fri Aug 20 18:50:46 2004 Michael Jennings (mej)
Revert bad autogen.sh change.
----------------------------------------------------------------------
Tue Sep 14 11:45:40 2004 Michael Jennings (mej)
Patch from Dirk Tilger <dirk@ostec.org> for 0.5 compatibility.
----------------------------------------------------------------------
Tue Oct 26 12:05:51 2004 Michael Jennings (mej)
Upon return from spifopt_parse()'s postparsing run, argv[] will now
contain only the non-option arguments left on the command line.
----------------------------------------------------------------------
Tue Oct 26 12:18:14 2004 Michael Jennings (mej)
Fix spec.
----------------------------------------------------------------------
Tue Oct 26 13:58:45 2004 Michael Jennings (mej)
Pre-parsing is kinda unique, and most applications probably won't need
it. So now pre-parsing of options must be specifically requested.
----------------------------------------------------------------------
Tue Dec 14 17:12:13 2004 Michael Jennings (mej)
0.6.1 release
----------------------------------------------------------------------
Tue Dec 14 17:51:20 2004 Michael Jennings (mej)
More work from my vacation. Turned the string class into both an
interface and an implementation, and created a new multipurpose buffer
class (untested) for arbitrary text/binary data. (Think "strings with
embedded newlines" if that helps.)
Now, if someone were so inclined, (s)he could create a LibAST
implementation of the "str" interface based on glib strings, or
QStrings, or whatever with almost no changes to the code using the
libast string API (once the function calls like spif_str_new() are
replaced with macro calls like SPIF_STR_NEW()).
A UTF-8-based string implementation is forthcoming.
----------------------------------------------------------------------
Wed Dec 29 19:58:03 2004 Michael Jennings (mej)
Attempting to move toward using newer autoSPLAT tools by default.
----------------------------------------------------------------------
Wed Jan 5 15:19:52 2005 Michael Jennings (mej)
Spec dependency fixes.
----------------------------------------------------------------------
Mon Mar 7 15:06:39 2005 Michael Jennings (mej)
Miscellaneous autoFUCKMEUPTHEASSWITHAPINETREE fixes.
----------------------------------------------------------------------
Mon Mar 7 17:28:00 2005 Michael Jennings (mej)
Cleaner "make maintainer-clean"
Finally found and fixed that stupid "Config file is designed for a
newer version of FOO" bullshit warning.
----------------------------------------------------------------------
Tue Jun 7 16:28:43 2005 Michael Jennings (mej)
Force STRICT_ISO_C99 to be defined when using gcc >= 4.0. Suggestions
and partial patch from John Ellson <ellson@research.att.com>.
----------------------------------------------------------------------
Mon Aug 22 23:02:03 2005 Michael Jennings (mej)
Add more quoting to libast.m4 for newer autoSPANK tools.
----------------------------------------------------------------------
Thu Sep 1 02:20:29 2005 Michael Jennings (mej)
Additional quoting for libast.m4.
----------------------------------------------------------------------
Thu Dec 22 18:29:54 2005 Michael Jennings (mej)
Fixed auto-detection of Imlib2. :-(
----------------------------------------------------------------------
|