diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-09-19 09:33:05 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-09-19 09:33:05 +0000 |
commit | 31c1fc5fff2412192576aaaa19599cd1f6bf861c (patch) | |
tree | 0dd4523bb3275dbe4400d3e7e1daf537d2fa77bd /apps | |
parent | 2af7b5a590b50a59f039ca82b12515f246949ebc (diff) | |
download | ATCD-31c1fc5fff2412192576aaaa19599cd1f6bf861c.tar.gz |
ChangeLogTag:Wed Sep 19 02:29:37 2001 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/gperf/ChangeLog | 68 | ||||
-rw-r--r-- | apps/gperf/tests/Makefile | 4 |
2 files changed, 39 insertions, 33 deletions
diff --git a/apps/gperf/ChangeLog b/apps/gperf/ChangeLog index a85afb92777..0c8978427c7 100644 --- a/apps/gperf/ChangeLog +++ b/apps/gperf/ChangeLog @@ -1,3 +1,9 @@ +Wed Sep 19 02:29:37 2001 Carlos O'Ryan <coryan@uci.edu> + + * tests/Makefile: + Another minor problem in the generated Makefile, i.e. the script + continues to break for filenames that contain a '+' sign in them. + Wed Sep 12 16:06:46 2001 Krishnakumar B <kitty@cs.wustl.edu> * tests/Makefile: @@ -14,53 +20,53 @@ Sat Sep 8 22:40:21 2001 Krishnakumar B <kitty@cs.wustl.edu> Sun Jul 29 12:17:55 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> * The following changes fix a bug reported by Karl Proese - <karl.proese@mchp.siemens.de> and Jeff Parsons. + <karl.proese@mchp.siemens.de> and Jeff Parsons. * tests: Patched the *.exp files to include the new WORDLIST_SIZE - macro. + macro. - * src/Key_List.cpp: Generate a new const/enum that defines the - size of the wordlist array. This is now used to fix a nasty bug - where MAX_HASH_VALUE was used instead of WORDLIST_SIZE. + * src/Key_List.cpp: Generate a new const/enum that defines the + size of the wordlist array. This is now used to fix a nasty bug + where MAX_HASH_VALUE was used instead of WORDLIST_SIZE. - * src/Key_List.cpp (output_lookup_array): Reformatted the - debugging output to make it easier to tell what's going on. + * src/Key_List.cpp (output_lookup_array): Reformatted the + debugging output to make it easier to tell what's going on. - * tests/tao.exp: Updated this file based on the expected output of - the new test example. + * tests/tao.exp: Updated this file based on the expected output of + the new test example. - * tests/tao.gperf: Updated this to use a different set of keys since - they exercise the range of screwy inputs better than the earlier - contents of this file. In particular, this should detect - certain nasty bugs that were plaguing GPERF earlier for keyword - sets with a large number of duplicates. + * tests/tao.gperf: Updated this to use a different set of keys since + they exercise the range of screwy inputs better than the earlier + contents of this file. In particular, this should detect + certain nasty bugs that were plaguing GPERF earlier for keyword + sets with a large number of duplicates. - * src/Key_List.cpp (read_keys): Clarified the debugging message - to indicate the key links are *static*. + * src/Key_List.cpp (read_keys): Clarified the debugging message + to indicate the key links are *static*. - * src/Options.cpp (parse_args): Fixed a stupid typo... + * src/Options.cpp (parse_args): Fixed a stupid typo... Sun Jul 1 08:33:56 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu> - * tests/Makefile: For some strange reason there was a BIN2 macro - but no BIN macro, which caused problems... + * tests/Makefile: For some strange reason there was a BIN2 macro + but no BIN macro, which caused problems... - * tests: Added support to check for the condition that caused - TAO's IDL compiler to break on keylists that have a large number - of duplicates! + * tests: Added support to check for the condition that caused + TAO's IDL compiler to break on keylists that have a large number + of duplicates! - * src/Key_List.cpp (output_lookup_function): Fixed a tiny mistake - where "slot < MAX_HASH_VALUE" should have been "slot <= - MAX_HASH_VALUE". Thanks to Vsevolod Novikov - <novikov@df.nnov.rfnet.ru> and Jeff Parsons - <parsons@cs.wustl.edu> for helping to track this down. + * src/Key_List.cpp (output_lookup_function): Fixed a tiny mistake + where "slot < MAX_HASH_VALUE" should have been "slot <= + MAX_HASH_VALUE". Thanks to Vsevolod Novikov + <novikov@df.nnov.rfnet.ru> and Jeff Parsons + <parsons@cs.wustl.edu> for helping to track this down. Sat Jun 2 13:30:30 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu> - * src/Makefile (INSTALL): Fixed several minor problems with the - Makefile so that this will build correctly on mingw. Thanks to - Cristian Ferretti <cristian_ferretti@yahoo.com> for pointing - this out. + * src/Makefile (INSTALL): Fixed several minor problems with the + Makefile so that this will build correctly on mingw. Thanks to + Cristian Ferretti <cristian_ferretti@yahoo.com> for pointing + this out. Fri Mar 30 11:30:54 2001 Carlos O'Ryan <coryan@uci.edu> diff --git a/apps/gperf/tests/Makefile b/apps/gperf/tests/Makefile index 5baf5e7d545..eea30a53922 100644 --- a/apps/gperf/tests/Makefile +++ b/apps/gperf/tests/Makefile @@ -260,8 +260,8 @@ realclean: $(ACE_ROOT)/ace/OS.i .obj/cinset.o .obj/cinset.so .shobj/cinset.o .shobj/cinset.so: cinset.cpp -c++ -.obj/inset.o .obj/inset.so .shobj/inset.o .shobj/inset.so: c++inset.cpp + +.obj/c++inset.o .obj/c++inset.so .shobj/c++inset.o .shobj/c++inset.so: c++inset.cpp .obj/iinset.o .obj/iinset.so .shobj/iinset.o .shobj/iinset.so: iinset.cpp |