-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathChangeLog.0
3288 lines (2038 loc) · 107 KB
/
ChangeLog.0
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
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
##
## autogenerated ChangeLog -- don't edit
##
2005-07-24 Sunday 15:27 Rocky Bernstein <rocky@panix.com>
* doc/how-to-make-a-release.txt: More specific.
2005-07-24 Sunday 14:11 Rocky Bernstein <rocky@panix.com>
* doc/how-to-make-a-release.txt: file how-to-make-a-release.txt was
initially added on branch bash-3-00.
2005-07-24 Sunday 14:11 Rocky Bernstein <rocky@panix.com>
* NEWS, configure.ac, doc/how-to-make-a-release.txt: Get ready for
0.2 release
2005-07-23 Saturday 08:58 Rocky Bernstein <rocky@panix.com>
* NEWS: Add version dates.
2005-07-23 Saturday 08:46 Rocky Bernstein <rocky@panix.com>
* TODO: Note broken $BASH_COMMAND
2005-07-23 Saturday 08:37 Rocky Bernstein <rocky@panix.com>
* INSTALL: Go over INSTALL instructions.
2005-07-22 Friday 11:32 Rocky Bernstein <rocky@panix.com>
* Makefile.am: Make distcheck fixes. Perhaps better about
pkgdatadir. If we can't link the bash debugger start file, give a
warning about it and continue.
2005-07-22 Friday 10:18 Rocky Bernstein <rocky@panix.com>
* configure.ac: typo bashb->bashdb.
2005-07-22 Friday 09:49 Rocky Bernstein <rocky@panix.com>
* test/run-misc: Another Bourne-shell change.
2005-07-22 Friday 09:47 Rocky Bernstein <rocky@panix.com>
* INSTALL, test/check_common.in, test/run-brkpt, test/run-misc,
test/run-parm: test/* More Bourne-shell adaptions for regression
tests. INSTALL: typo
2005-07-22 Friday 09:30 Rocky Bernstein <rocky@panix.com>
* test/check_common.in: Another change for Bourne shell.
2005-07-22 Friday 09:26 Rocky Bernstein <rocky@panix.com>
* test/: check_common.in, run-action, run-brkpt, run-brkpt1,
run-bugIFS, run-debug, run-display, run-finish, run-list, run-misc,
run-multi, run-parm, run-restart, run-search, run-sig, run-skip,
run-subshell, run-tbreak, run-watch1, run-watch2: Change to make
Bourne shell's test -z work.
2005-07-22 Friday 08:31 Rocky Bernstein <rocky@panix.com>
* test/: run-action, run-brkpt, run-bugIFS, run-debug, run-display,
run-finish, run-list, run-parm, run-restart, run-search,
run-tbreak, run-watch2: Save builddir to allow "make distcheck" to
get farther.
2005-07-22 Friday 01:35 Rocky Bernstein <rocky@panix.com>
* test/: run-brkpt, run-multi, run-sig, run-skip, run-subshell:
Skip the tests where a regression of BASH_COMMAND is apparent.
2005-07-22 Friday 01:18 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: @setcontentsaftertitlepage doesn't exist any
more.
2005-07-22 Friday 00:40 Rocky Bernstein <rocky@panix.com>
* doc/Makefile.am: If tex2html isn't around that's okay.
2005-04-15 Friday 06:09 Rocky Bernstein <rocky@panix.com>
* INSTALL: Small doc corrections. Some suggested by Rich Paul.
2005-03-03 Thursday 01:56 Rocky Bernstein <rocky@panix.com>
* Makefile.am: Set pkgdatadir based one what was specified in
configure. All of this is another horrible automess that I don't
how to do correctly.
At this point in my life, I'd rather leave it a little bit
auto-broken than delve yet again into the auto-manure.
2005-03-03 Thursday 01:51 Rocky Bernstein <rocky@panix.com>
* autogen.sh, configure.ac: autogen.sh: create version.texi and run
configure. configure.ac: note problem with pkgdatadir vs datadir.
2004-11-12 Friday 03:01 Rocky Bernstein <rocky@panix.com>
* NEWS: The first release has to come *sometime*.
2004-11-12 Friday 02:49 Rocky Bernstein <rocky@panix.com>
* configure.ac: AC_PROG was too far up. I hate autoconf.
2004-11-12 Friday 02:21 Rocky Bernstein <rocky@panix.com>
* configure.ac: Okay - time for the first release.
2004-11-10 Wednesday 13:32 Rocky Bernstein <rocky@panix.com>
* Makefile.am: Remove old bashdb-main.inc file/link only it is
there.
2004-11-10 Wednesday 03:22 Rocky Bernstein <rocky@panix.com>
* cvs2cl_usermap: file cvs2cl_usermap was initially added on branch
bash-3-00.
2004-11-10 Wednesday 03:22 Rocky Bernstein <rocky@panix.com>
* Makefile.am, configure.ac, cvs2cl_header, cvs2cl_usermap: Get
automatic generation of ChangeLog working.
2004-11-10 Wednesday 03:22 Rocky Bernstein <rocky@panix.com>
* cvs2cl_header: file cvs2cl_header was initially added on branch
bash-3-00.
2004-11-10 Wednesday 03:12 Rocky Bernstein <rocky@panix.com>
* INSTALL, README: Some small changes.
2004-11-09 Tuesday 03:31 Rocky Bernstein <rocky@panix.com>
* patch/bash-3.00.patch: file bash-3.00.patch was initially added
on branch bash-3-00.
2004-11-09 Tuesday 03:31 Rocky Bernstein <rocky@panix.com>
* INSTALL, Makefile.am, README, configure.ac,
patch/bash-3.00.patch: patch/bash-3.00.patch, configure.ac: add
patch to bash 3.00 for debugger configure.ac: add ln -s from
bashdb-main.inc to dbg-main.inc INSTALL/README: update for bash
3.00 changes
2004-11-09 Tuesday 01:18 Rocky Bernstein <rocky@panix.com>
* test/watch1.tests: Don't know how this bug got here. Make the
same as rebash 2.05b
2004-11-08 Monday 03:44 Rocky Bernstein <rocky@panix.com>
* dbg-cmds.inc, dbg-sig.inc, test/finish.right, test/sig.right:
Redo the way debugger "finish" is implemented.
2004-11-05 Friday 23:10 Rocky Bernstein <rocky@panix.com>
* test/: brkpt2.right, debug.right, parm.right, sig.right: bash 3.0
debugger main() doesn't show arguments. Not sure why, but until
this is fixed change the expected output.
2004-11-05 Friday 01:55 Rocky Bernstein <rocky@panix.com>
* dbg-sig.inc: Bash 3 makes you run "shopt -s extdebug" to get line
number and file names of functions. (declare -f fn). It may change
the behavior in other things too.
2004-08-21 Saturday 14:15 Rocky Bernstein <rocky@panix.com>
* test/.cvsignore: .check files are the current output files we
compare against the corresponding ".right" files. On each new run
start the slate clean.
2004-08-21 Saturday 14:11 Rocky Bernstein <rocky@panix.com>
* README.CVS: file README.CVS was initially added on branch
bash-3-00.
2004-08-21 Saturday 14:11 Rocky Bernstein <rocky@panix.com>
* README.CVS: Instructions for how to set up from CVS initially.
2004-08-21 Saturday 13:59 Rocky Bernstein <rocky@panix.com>
* test/: action.tests, brkpt1.tests, brkpt2.tests, brkpt3.tests,
bugIFS.tests, debug.sh, debug.tests, display.tests, finish.tests,
list.tests, misc.tests, multi1.tests, multi2.tests, multi3.tests,
multi4.tests, parm.tests, restart.tests, run-action, run-all,
run-brkpt, run-brkpt1, run-bugIFS, run-debug, run-display,
run-finish, run-list, run-misc, run-multi, run-parm, run-restart,
run-search, run-sig, run-skip, run-subshell, run-tbreak,
run-watch1, run-watch2, search.tests, sig.tests, skip.tests,
subshell1.tests, subshell2.tests, subshell3.tests, subshell4.tests,
tbreak.tests, watch1.tests, watch2.tests: Changes to make bash
program outside of source tree to work better. In the process, I
guess things are a little simpler.
2004-08-21 Saturday 13:29 Rocky Bernstein <rocky@panix.com>
* Makefile.am, bashdb.in, doc/.cvsignore, test/check_common.in: The
location of "bash" should be the one found by configure. So..
bashdb: @INTERPRETER@ -> @BASH_PROG@ check_common.in uses
@BASH_PROG@ Makefile.am: let configure figure where bash is.
2004-08-21 Saturday 13:26 Rocky Bernstein <rocky@panix.com>
* autogen.sh: file autogen.sh was initially added on branch
bash-3-00.
2004-08-21 Saturday 13:26 Rocky Bernstein <rocky@panix.com>
* autogen.sh: script to set up CVS the first time. Was originally
done via in remake's autogen.sh. Extracted and adapted from that.
2004-08-21 Saturday 13:23 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: Fix some macros that don't expand either because
we are using newer tools or because should are more independent of
the bash program.
2004-08-20 Friday 23:20 Rocky Bernstein <rocky@panix.com>
* bashdb.in, dbg-cmds.inc: Changes for bash 3.0: fntrace ->
functrace
2004-08-20 Friday 22:57 Rocky Bernstein <rocky@panix.com>
* configure.ac, dbg-fns.inc, dbg-help.inc, dbg-io.inc,
dbg-list.inc, dbg-pre.inc.in, dbg-set-d-vars.inc, dbg-sig-ret.inc,
dbg-stack.inc: Initial commit for debugger via bash 3.0.
2004-06-27 Sunday 09:56 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: A number of small mostly typographical
corrections.
2004-06-26 Saturday 12:02 Rocky Bernstein <rocky@panix.com>
* test/misc.right: Pedeantic punctuation.
2004-06-26 Saturday 11:45 Rocky Bernstein <rocky@panix.com>
* dbg-help.inc, doc/bashdb.texi: Small punctuation.
2004-06-26 Saturday 10:13 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: Spelling error.
2004-05-17 Monday 17:52 Masatake YAMATO <jet@gyve.org>
* dbg-io.inc: debugger/dbg-io.inc (_Dbg_progess_show): Show the
progress percentage. (_Dbg_readin): Remove unnecessary space in
$progress_prefix.
2004-05-17 Monday 06:46 Masatake YAMATO <jet@gyve.org>
* NEWS, dbg-io.inc: debugger/dbg-io.inc (_Dbg_progess_show,
_Dbg_progess_show_internal, _Dbg_progess_done): New functions.
(_Dbg_readin): Added progress bar related code.
2004-05-16 Sunday 07:13 Rocky Bernstein <rocky@panix.com>
* configure.ac: In 0.44cvs land now.
2004-05-15 Saturday 21:53 Rocky Bernstein <rocky@panix.com>
* configure.ac: Getting ready for 0.43 release.
2004-05-15 Saturday 09:04 Rocky Bernstein <rocky@panix.com>
* dbg-cmds.inc, test/check_common.in, test/run-debug,
test/run-list, test/run-restart, test/run-search, test/run-sig,
test/run-tbreak: Fix bug in restart of bashdb: don't assume bash
has already been installed. Need to set BASH env variable in all
regression tests. remove duplicate TOP_BUILDDIR which may cause
inconsistencies.
2004-05-14 Friday 21:26 Rocky Bernstein <rocky@panix.com>
* bashdb.in, dbg-cmds.inc, dbg-init.inc, dbg-main.inc.in,
dbg-sig.inc, test/restart.cmd, test/restart.right,
test/restart2.cmd, test/run-debug: A better restart regression
test: now tests saving/restoring breakpoints across a restart.
Lead to bug in using the the debugger library directory when it was
a relative path. So we now fill out libdir path.
2004-05-14 Friday 11:29 Rocky Bernstein <rocky@panix.com>
* dbg-cmds.inc, dbg-file.inc, test/restart.right: Bug in listing
file line numbers after a cd.
2004-05-14 Friday 05:16 Rocky Bernstein <rocky@panix.com>
* test/Makefile.am: Add run-restart test.
2004-05-14 Friday 04:14 Rocky Bernstein <rocky@panix.com>
* Makefile.am, NEWS, test/Makefile.am: Add "restart" regression
test. Get ready for a new release. Automatically generate
ChangeLog.
2004-05-12 Wednesday 01:56 Rocky Bernstein <rocky@panix.com>
* dbg-cmds.inc, dbg-init.inc, test/restart.cmd, test/restart.right,
test/restart.tests, test/restart2.cmd, test/restartbug.sh,
test/run-restart: Fix bug in restart command when there the script
was relative and a cd was issued inside the program. Basically we
need to save the directory we started so we can cd to that before
restarting again.
2004-03-04 Thursday 04:19 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: Remove installing and formatting doc sections.
They were empty confused folks.
2004-02-15 Sunday 00:29 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: Minor changes.
2003-11-12 Wednesday 11:48 Rocky Bernstein <rocky@panix.com>
* dbg-io.inc: Test for null filename in reading in source.
2003-11-12 Wednesday 11:46 Rocky Bernstein <rocky@panix.com>
* configure.ac: Remove creation of version.texi. We use
version-bashdb.texi. I wonder if more of this hackery is in fact
correct.
2003-11-12 Wednesday 11:38 Rocky Bernstein <rocky@panix.com>
* doc/version.texi.in: automake creates this.
2003-10-07 Tuesday 11:28 Rocky Bernstein <rocky@panix.com>
* configure.ac: Don't install gud unless we have emacs version 21.0
to 21.3.
2003-10-01 Wednesday 01:54 Rocky Bernstein <rocky@panix.com>
* dbg-cmds.inc, test/misc-output.right, test/run-action,
test/run-brkpt, test/run-brkpt1, test/run-bugIFS, test/run-debug,
test/run-display, test/run-finish, test/run-list, test/run-multi,
test/run-parm, test/run-search, test/run-skip, test/run-subshell,
test/run-tbreak, test/run-watch1, test/run-watch2: dbg-cmds.inc,
test/misc-output.right: respect basename on file command output so
we get OS-independent results
run-*: temp file is in build directory rather than /tmp. Again,
this is more portable.
2003-09-24 Wednesday 03:44 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi:
More spurious regression-test warnings removed.
2003-09-23 Tuesday 03:58 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: More.
2003-09-23 Tuesday 03:49 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: More small corrections.
2003-09-23 Tuesday 02:32 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: Indexing additions.
2003-09-23 Tuesday 02:26 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: Add (more) examples under print, info variables
and examine. Note that examine can be given a list of variables.
2003-09-21 Sunday 15:33 Rocky Bernstein <rocky@panix.com>
* dbg-cmds.inc, dbg-file.inc, dbg-help.inc, dbg-io.inc,
doc/bashdb.texi, test/check_common.in, test/misc-output.right,
test/misc.cmd, test/misc.right, test/run-misc, test/sig.right: Add
gdb's 'file' command
2003-09-21 Sunday 05:31 Rocky Bernstein <rocky@panix.com>
* NEWS, configure.ac: Looks like we are version 0.42, not 0.43.
2003-09-19 Friday 21:56 Rocky Bernstein <rocky@panix.com>
* NEWS: Another last-minute bug fixed.
2003-09-19 Friday 21:43 Rocky Bernstein <rocky@panix.com>
* dbg-fns.inc: Was calling the wrong routine to expand source
filename.
2003-09-16 Tuesday 02:18 Rocky Bernstein <rocky@panix.com>
* test/: subshell.sh, subshell1.right, subshell2.right,
subshell3.right, multi.sh, multi1.right, multi2.right,
multi3.right, multi4.right, brkpt3.right: Need to make sure we use
builtin cd - user could have his own function or alias
2003-09-15 Monday 19:50 Rocky Bernstein <rocky@panix.com>
* doc/.cvsignore: typo
2003-09-15 Monday 19:49 Rocky Bernstein <rocky@panix.com>
* NEWS: Small things
2003-09-13 Saturday 23:30 Rocky Bernstein <rocky@panix.com>
* test/: misc-output.right, misc.cmd: On OSX Issuing V dq* followed
by info variables dq* causes the debugger not to return. Until
further investagation, we'll remove this test.
2003-09-13 Saturday 23:25 Rocky Bernstein <rocky@panix.com>
* doc/: .cvsignore, bashdb.texi: Use version-bashdb.texi instead of
version.tex. Smells however like we should remove all of the
configure.ac stuff.
2003-09-13 Saturday 01:41 Rocky Bernstein <rocky@panix.com>
* NEWS, test/version, test/version.mini: Seems the version stuff
(from tests) to show what's getting tested was missing. Copy down.
NEWS: should be getting ready for another release.
2003-09-12 Friday 04:27 Rocky Bernstein <rocky@panix.com>
* dbg-cmds.inc: Another fix for cygwin (and perhaps others).
2003-09-12 Friday 03:50 Rocky Bernstein <rocky@panix.com>
* Makefile.am: add a couple more $(EXEEXT)'s.
2003-09-12 Friday 03:11 Rocky Bernstein <rocky@panix.com>
* Makefile.am: It's EXEEXT, not EXTEXT. And there were a couple of
these missing too.
2003-09-12 Friday 03:10 Rocky Bernstein <rocky@panix.com>
* configure.ac: Run AC_PROC_CC to get EXEEXT set.
2003-09-12 Friday 01:29 Rocky Bernstein <rocky@panix.com>
* Makefile.am: Someone forgot a /.
2003-09-05 Friday 10:34 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: Use @ifclear instead of @c for conditional code
2003-09-02 Tuesday 00:24 Rocky Bernstein <rocky@panix.com>
* doc/: bashdb.texi, Makefile.am: Changes suggested by Matthias
Klose
2003-08-31 Sunday 21:33 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: No comment.
2003-08-29 Friday 15:29 snikkt
* Makefile.am, configure.ac, doc/Makefile.am: * ac_srcdir now
defaults to . if empty * better separation between debugger and
(re)bash * tex _almost_ not needed .) * make ; make dist now
produces expected result * (ac_)srcdir missing in a few places.
2003-08-28 Thursday 02:58 Rocky Bernstein <rocky@panix.com>
* configure.ac: prepare for another release.
2003-08-28 Thursday 02:57 Rocky Bernstein <rocky@panix.com>
* NEWS: What's up, doc.
2003-08-28 Thursday 02:47 Rocky Bernstein <rocky@panix.com>
* Makefile.am, acinclude.m4, configure.ac: Make debugger more
independent of rebash: - Move bashdb-pre.inc creation into
debugger configure - acinclude.m4 moved into debugger and used
from rebash via bootstrap.sh's aclocal -I debugger
2003-08-28 Thursday 02:44 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: @ifset name can't have embedded _'s.
2003-08-28 Thursday 01:11 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: Remove invariant sections to make Matthias Klose
and presumably Debian happy.
2003-08-26 Tuesday 03:14 Rocky Bernstein <rocky@panix.com>
* .cvsignore, dbg-main.inc: dbg-main.inc is now created from
dbg-main.inc.in
2003-08-26 Tuesday 03:13 Rocky Bernstein <rocky@panix.com>
* Makefile.am: Add acinclude.m4 into distribution
2003-08-26 Tuesday 03:11 Rocky Bernstein <rocky@panix.com>
* configure.ac: Make created tarball of the form
bash-xxx-bashdb-yyy.tar.gz rather than bash-xxx.tar.gz which could
get confused with the upper bash tarball.
2003-08-26 Tuesday 03:09 Rocky Bernstein <rocky@panix.com>
* emacs/.cvsignore: bashdb.elc is derived.
2003-08-25 Monday 16:34 snikkt
* Makefile.am, bashdb.in, configure.ac, dbg-main.inc.in,
test/brkpt2.right, test/debug.right, test/finish.right,
test/parm.right, test/sig.right, test/tbreak.right: Mikael fixed: *
removed deprecated Autoconf constructs * bootstrap.sh execution
order and include location * install into pkgdatadir instead of
libdir * use AC_SUBST to configure all paths instead of hardcoding
And added: * configurable package name using env. var.
ALT_PACKAGE_NAME * configurable executable names * dbg-main.inc is
genereated from dbg-main.inc.in now * local m4 macros now reside in
acinclude.m4
2003-08-16 Saturday 16:31 Rocky Bernstein <rocky@panix.com>
* NEWS: - Note interaction with bash 2.05/readline as requested by
Masatake YAMATO - Some of the 0.42 news - Miscellaneous grammatical
and spelling correctiosn
2003-08-12 Tuesday 14:03 Rocky Bernstein <rocky@panix.com>
* doc/Makefile.am: Install man-page as bashdb.1 rather than
bashdb-man.1.
2003-08-12 Tuesday 14:02 Rocky Bernstein <rocky@panix.com>
* configure.ac: Update version number for perhaps another release
(after Mikael's changes).
2003-08-12 Tuesday 13:56 Rocky Bernstein <rocky@panix.com>
* doc/bashdb-man.pod: Add BUGS section. "options" is now a head
section rather inside the description.
2003-08-12 Tuesday 12:49 Rocky Bernstein <rocky@panix.com>
* doc/Makefile.am: create manual pages from pod2xxx.
2003-08-11 Monday 13:46 Rocky Bernstein <rocky@panix.com>
* doc/bashdb-man.pod: First cut at a debugger manual page.
2003-08-11 Monday 09:59 Rocky Bernstein <rocky@panix.com>
* emacs/Makefile.am: Can't get emacs-lisp install in parent
directory. Create a Makefile.am in this directory.
2003-08-11 Monday 09:57 Rocky Bernstein <rocky@panix.com>
* Makefile.am, configure.ac: Can't seem with automake to install
elisp files from parent directory, so create a Makefile in the
emacs directory.
2003-08-11 Monday 02:45 Rocky Bernstein <rocky@panix.com>
* THANKS: Acknowledge Matthias Klose's assistance and wisdom.
2003-08-10 Sunday 22:51 Rocky Bernstein <rocky@panix.com>
* doc/bashdb.texi: Small changes to call stack output and what we
list as the names for x (examine) and V (info variables).
2003-08-08 Friday 02:36 Rocky Bernstein <rocky@panix.com>
* NEWS, test/sig.right: Bug fix: line number in multi-line
assignments had been the line number where the assignment ends, not
the beginning. Thus assignments with backticked subshells gave the
wrong line number.
2003-08-06 Wednesday 14:21 Rocky Bernstein <rocky@panix.com>
* dbg-cmds.inc, test/misc-output.right: Changes from Mikael
Andersson for V / info variables improvements.
2003-08-06 Wednesday 13:19 Rocky Bernstein <rocky@panix.com>
* test/.cvsignore: Derived from check_common.in
2003-08-06 Wednesday 11:49 Rocky Bernstein <rocky@panix.com>
* test/check_common.in: Common check_output routine and other
common code fragments.
2003-08-02 Saturday 23:15 Rocky Bernstein <rocky@panix.com>
* dbg-cmds.inc, test/misc.cmd, test/misc.right, test/sig.right:
dbg-cmds.inc: patch from Mikael Andersson to address embedded \n's
for blanks. dbg-help.inc: "V" help typo test/misc.cmd: add "info
variables" test test/*.right: corresponding changes in regression
test results
2003-08-02 Saturday 20:20 Rocky Bernstein <rocky@panix.com>
* dbg-cmds.inc, dbg-help.inc, doc/bashdb.texi: Doc changes.
2003-08-02 Saturday 20:19 Rocky Bernstein <rocky@panix.com>
* configure.ac: Time for another release.
2003-08-02 Saturday 20:12 Rocky Bernstein <rocky@panix.com>
* test/: misc.right, sig.right: Help changed. Not sure why sig
keeps changing though.
2003-08-02 Saturday 19:54 Rocky Bernstein <rocky@panix.com>
* Makefile.am, dbg-file.inc, dbg-help.inc, dbg-io.inc,
dbg-list.inc: Add _Dbg_ in front of more debugger variables. In
particular: _read_ -> _Dbg_read_ _maxline_ -> _Dbg_maxline_
_source_ -> _Dbg_source_
2003-08-02 Saturday 19:53 Rocky Bernstein <rocky@panix.com>
* test/: misc-output.right, misc.right, sig.right: Add test of V
command. sig: line number again changed.
2003-08-02 Saturday 19:52 Rocky Bernstein <rocky@panix.com>
* test/misc.cmd: Add test of V command.
2003-08-02 Saturday 19:51 Rocky Bernstein <rocky@panix.com>
* dbg-cmds.inc: Routine to list variables and values by pattern
possibly inverted. Code courtesy of Mikael Andersson
<snikkt@telia.com>.
2003-08-02 Saturday 19:46 Rocky Bernstein <rocky@panix.com>
* THANKS: This is long overdue, even if it is meager.
2003-08-01 Friday 10:45 Rocky Bernstein <rocky@panix.com>
* dbg-help.inc: Add "help show <command>" and "help info <command>"
.
2003-08-01 Friday 03:48 Rocky Bernstein <rocky@panix.com>
* dbg-help.inc: Missing a line for "help V"
2003-06-19 Thursday 14:49 Rocky Bernstein <rocky@panix.com>
* TODO: Simple typo.
2003-06-09 Monday 03:19 Rocky Bernstein <rocky@panix.com>
* configure.ac: It's = not == in tests
2003-06-08 Sunday 14:39 Rocky Bernstein <rocky@panix.com>
* configure.ac, test/Makefile.am, test/action.tests,
test/bugIFS.tests, test/display.tests, test/finish.tests,
test/run-action, test/run-brkpt, test/run-brkpt1, test/run-bugIFS,
test/run-debug, test/run-display, test/run-finish, test/run-list,
test/run-misc, test/run-multi, test/run-parm, test/run-search,
test/run-sig, test/run-skip, test/run-subshell, test/run-tbreak,
test/run-watch1, test/run-watch2, test/skip.tests,
test/subshell1.tests, test/subshell2.tests, test/subshell3.tests:
Debugger regression tests now will use diff --u if possible. Will
revert even to cmp if diff is not around. check_common: common
routines and setup to simplify/unify regression testing
2003-06-06 Friday 05:01 Rocky Bernstein <rocky@panix.com>
* NEWS, test/run-multi: Bash patches 005-007. run-multi: set
THIS_SH so it runs under cygwin (and others).
2003-06-03 Tuesday 18:28 Rocky Bernstein <rocky@panix.com>
* test/: Makefile.am, multi1.right, multi1.tests, multi2.right,
multi2.tests, multi3.right, multi3.tests, multi4.tests, run-multi:
Add multi tests
2003-06-03 Tuesday 18:27 Rocky Bernstein <rocky@panix.com>
* Makefile.am: Add EXTEXT for M$ OS's.
2003-06-03 Tuesday 17:08 Rocky Bernstein <rocky@panix.com>
* test/: Makefile.am, multi.sh, multi1.cmd, multi1.tests,
multi2.cmd, multi2.tests, multi3.cmd, multi3.tests, multi4.right,
run-multi: Add multi tests
2003-06-02 Monday 09:03 Rocky Bernstein <rocky@panix.com>
* configure.ac: Create bashdb as executable.
2003-06-01 Sunday 15:07 Rocky Bernstein <rocky@panix.com>
* Makefile.am: Make sure bash is copied before running "make check"
2003-06-01 Sunday 14:35 Rocky Bernstein <rocky@panix.com>
* .cvsignore, doc/.cvsignore, doc/fdl.texi: CVS maintainance.
2003-06-01 Sunday 14:32 Rocky Bernstein <rocky@panix.com>
* Makefile.am, configure.ac: configure.ac: set unique distribution
name Makefile.am: include doc directory.
2003-06-01 Sunday 14:31 Rocky Bernstein <rocky@panix.com>
* doc/: Makefile.am, bashdb.texi, gpl.texi, version.texi.in: Except
Makefile.am, moved from bash doc directory. Makefile.am: pretty
standard stuff.
2003-06-01 Sunday 13:23 Rocky Bernstein <rocky@panix.com>
* test/: brkpt1.tests, brkpt2.right, brkpt2.tests, brkpt3.tests,
debug.tests, list.tests, misc.tests, parm.tests, run-brkpt,
run-debug, run-list, run-misc, run-parm, run-search, run-sig,
run-tbreak, run-watch2, search.tests, sig.tests, tbreak.tests,
watch2.tests: make check and make distcheck now work.
2003-06-01 Sunday 02:43 Rocky Bernstein <rocky@panix.com>
* Makefile.am: Seems to be needed for make dist to work.
2003-06-01 Sunday 02:23 Rocky Bernstein <rocky@panix.com>
* configure.ac: configure.in -> configure.ac
2003-06-01 Sunday 02:15 Rocky Bernstein <rocky@panix.com>
* test/: Makefile.am, run-action, run-brkpt, run-brkpt1,
run-bugIFS, run-debug, run-display, run-finish, run-list, run-misc,
run-multi, run-parm, run-search, run-sig, run-skip, run-subshell,
run-tbreak, run-watch1, run-watch2, skip.tests, subshell1.tests,
tbreak.tests: Closer to getting "make distcheck" working. "make
check" is currently broken for a couple of tests.
2003-06-01 Sunday 01:35 Rocky Bernstein <rocky@panix.com>
* test/: brkpt3.tests, debug.tests, display.tests, finish.tests,
list.tests, subshell2.tests, subshell3.tests, subshell4.tests,
tbreak.tests, watch1.tests, watch2.tests: changes to making "make
dist" work
2003-06-01 Sunday 01:18 Rocky Bernstein <rocky@panix.com>
* CHANGES, Makefile.am, bashdb, bashdb.in, configure.in,
dbg-file.inc, test/.cvsignore, test/Makefile.am, test/action.cmd,
test/action.right, test/action.tests, test/brkpt1.cmd,
test/brkpt1.right, test/brkpt1.tests, test/brkpt2.cmd,
test/brkpt2.right, test/brkpt2.tests, test/brkpt3.cmd,
test/brkpt3.right, test/brkpt3.tests, test/bugIFS, test/bugIFS.cmd,
test/bugIFS.right, test/bugIFS.sh, test/bugIFS.tests,
test/dbg-test1.sh, test/dbg-test1.sub, test/dbg-test2.sh,
test/debug.cmd, test/debug.right, test/debug.sh, test/debug.tests,
test/debug2.cmd, test/display.cmd, test/display.right,
test/display.tests, test/finish.cmd, test/finish.right,
test/finish.tests, test/list.cmd, test/list.right, test/list.tests,
test/misc-output.right, test/misc.cmd, test/misc.right,
test/misc.tests, test/multi4.cmd, test/multi4.right,
test/multi4.tests, test/parm.cmd, test/parm.right, test/parm.sh,
test/parm.tests, test/prof1.cmd, test/prof2.cmd, test/run-action,
test/run-all, test/run-brkpt, test/run-brkpt1, test/run-bugIFS,
test/run-debug, test/run-display, test/run-finish, test/run-list,
test/run-misc, test/run-multi, test/run-parm, test/run-search,
test/run-sig, test/run-skip, test/run-subshell, test/run-tbreak,
test/run-watch1, test/run-watch2, test/search.cmd,
test/search.right, test/search.tests, test/sig.cmd, test/sig.right,
test/sig.sh, test/sig.tests, test/skip.cmd, test/skip.right,
test/skip.sh, test/skip.tests, test/subshell.sh,
test/subshell1.cmd, test/subshell1.right, test/subshell1.tests,
test/subshell2.cmd, test/subshell2.right, test/subshell2.tests,
test/subshell3.cmd, test/subshell3.right, test/subshell3.tests,
test/subshell4.cmd, test/subshell4.right, test/subshell4.tests,
test/tbreak.cmd, test/tbreak.right, test/tbreak.tests,
test/watch1.cmd, test/watch1.right, test/watch1.tests,
test/watch2.cmd, test/watch2.right, test/watch2.tests,
tests/.cvsignore, tests/Makefile.am, tests/action.cmd,
tests/action.right, tests/action.tests, tests/brkpt1.cmd,
tests/brkpt1.right, tests/brkpt1.tests, tests/brkpt2.cmd,
tests/brkpt2.right, tests/brkpt2.tests, tests/brkpt3.cmd,
tests/brkpt3.right, tests/brkpt3.tests, tests/bugIFS,
tests/bugIFS.cmd, tests/bugIFS.right, tests/bugIFS.sh,
tests/bugIFS.tests, tests/dbg-test1.sh, tests/dbg-test1.sub,
tests/dbg-test2.sh, tests/debug.cmd, tests/debug.right,
tests/debug.sh, tests/debug.tests, tests/debug2.cmd,
tests/display.cmd, tests/display.right, tests/display.tests,
tests/finish.cmd, tests/finish.right, tests/finish.tests,
tests/list.cmd, tests/list.right, tests/list.tests,
tests/misc-output.right, tests/misc.cmd, tests/misc.right,
tests/misc.tests, tests/multi4.cmd, tests/multi4.right,
tests/multi4.tests, tests/parm.cmd, tests/parm.right,
tests/parm.sh, tests/parm.tests, tests/prof1.cmd, tests/prof2.cmd,
tests/run-action, tests/run-all, tests/run-brkpt, tests/run-brkpt1,
tests/run-bugIFS, tests/run-debug, tests/run-display,
tests/run-finish, tests/run-list, tests/run-misc, tests/run-multi,
tests/run-parm, tests/run-search, tests/run-sig, tests/run-skip,
tests/run-subshell, tests/run-tbreak, tests/run-watch1,
tests/run-watch2, tests/search.cmd, tests/search.right,
tests/search.tests, tests/sig.cmd, tests/sig.right, tests/sig.sh,
tests/sig.tests, tests/skip.cmd, tests/skip.right, tests/skip.sh,
tests/skip.tests, tests/subshell.sh, tests/subshell1.cmd,
tests/subshell1.right, tests/subshell1.tests, tests/subshell2.cmd,
tests/subshell2.right, tests/subshell2.tests, tests/subshell3.cmd,
tests/subshell3.right, tests/subshell3.tests, tests/subshell4.cmd,
tests/subshell4.right, tests/subshell4.tests, tests/tbreak.cmd,
tests/tbreak.right, tests/tbreak.tests, tests/watch1.cmd,
tests/watch1.right, tests/watch1.tests, tests/watch2.cmd,
tests/watch2.right, tests/watch2.tests: configure->configure.ac
tests->test bashdb no longer has hard-coded #! some changes to make
"make distcheck" work... More changes later..
2003-05-20 Tuesday 18:02 Rocky Bernstein <rocky@panix.com>
* dbg-init.inc: More OS-independent (output independent) test if a
terminal is attached.
2003-04-30 Wednesday 00:22 Rocky Bernstein <rocky@panix.com>
* bashdb, dbg-cmds.inc, dbg-fns.inc, dbg-init.inc: Bug: Was using
source filename rather than canonicalized (expanded) filename.
2003-04-30 Wednesday 00:21 Rocky Bernstein <rocky@panix.com>
* tests/: debug.right, list.right, sig.right: Basename made to work
like basename.
2003-04-08 Tuesday 03:29 Rocky Bernstein <rocky@panix.com>
* ddd/ddd-3.3.1-bashdb.diff: We now have this all in CVS as well as
a file release.
2003-04-08 Tuesday 03:27 Rocky Bernstein <rocky@panix.com>
* tests/sig.right: Line number always changing on me.
2003-04-08 Tuesday 03:26 Rocky Bernstein <rocky@panix.com>
* tests/: misc.cmd, misc.right: Give invalid command to get
"Invalid command" back.
2003-04-08 Tuesday 03:24 Rocky Bernstein <rocky@panix.com>
* dbg-cmds.inc: Use gdb undefined command message.
2003-03-31 Monday 15:09 Rocky Bernstein <rocky@panix.com>
* NEWS, dbg-brk.inc, tests/action.right, tests/brkpt1.right,
tests/brkpt2.right, tests/display.right, tests/tbreak.right,
tests/watch1.right: Numbers in breakpoint/watchpoint/action numbers
are printed in a "%-3d" rather than (I think the nicer) %3d" to
match gdb's output. This helps ddd parse breakpoints.
2003-03-31 Monday 03:04 Rocky Bernstein <rocky@panix.com>
* NEWS, dbg-brk.inc, tests/action.right, tests/brkpt1.cmd,
tests/brkpt1.right, tests/brkpt2.cmd, tests/brkpt2.right,
tests/brkpt3.cmd, tests/brkpt3.right, tests/bugIFS.right,
tests/debug.right, tests/display.right, tests/finish.right,
tests/parm.right, tests/tbreak.right, tests/watch2.right:
Breakpoints are now are origin 1 to match gdb. It also helps ddd.
2003-03-27 Thursday 05:34 Rocky Bernstein <rocky@panix.com>
* dbg-pre.inc.in: Ooops - changed dbg-pre.inc but should have
changed this one instead.
2003-03-26 Wednesday 14:09 Rocky Bernstein <rocky@panix.com>
* tests/: list.cmd, list.right: Add test of filename
canonicalization
2003-03-26 Wednesday 14:05 Rocky Bernstein <rocky@panix.com>
* dbg-file.inc, dbg-io.inc: Add routine to resolve based on dir and
then expand a filename. Hopefully will be more permissive in
specified and work more like gdb.
2003-03-26 Wednesday 14:01 Rocky Bernstein <rocky@panix.com>
* dbg-brk.inc: Expand filename only the breakpoint exists.
2003-03-26 Wednesday 04:30 Rocky Bernstein <rocky@panix.com>
* dbg-list.inc: When set annotate=1 expand full filenames when
listing source lines.
2003-03-26 Wednesday 04:29 Rocky Bernstein <rocky@panix.com>
* dbg-file.inc: Bug in testing absolute file name.
2003-03-25 Tuesday 23:46 Rocky Bernstein <rocky@panix.com>
* dbg-brk.inc, dbg-file.inc, dbg-list.inc, tests/brkpt3.cmd,
tests/brkpt3.right, tests/list.right: Canonicalize filenames in
list and breakpoint commands and update regression tests to make
sure we don't slip back.
2003-03-22 Saturday 00:16 Rocky Bernstein <rocky@panix.com>
* dbg-file.inc, dbg-set.inc: Small stuff.
2003-03-21 Friday 23:54 Rocky Bernstein <rocky@panix.com>
* bashdb, dbg-brk.inc, dbg-file.inc, dbg-fns.inc, dbg-help.inc,
dbg-init.inc, dbg-set.inc, tests/brkpt2.right, tests/debug.right,
tests/finish.right, tests/parm.right, tests/sig.right,
tests/tbreak.right: Add "show dir" and directory search in filename
lookup (such as for breakpoints or line listing).
2003-03-21 Friday 17:59 Rocky Bernstein <rocky@panix.com>
* dbg-sig.inc, tests/sig.right: Signal received message is now
gdb's. This simplifies ddd handling.
2003-03-21 Friday 17:56 Rocky Bernstein <rocky@panix.com>
* TODO: Current sitiation.
2003-03-02 Sunday 18:52 Rocky Bernstein <rocky@panix.com>
* ddd/ddd-3.3.1-bashdb.diff: Spelled g++ option incorrectly!
2003-02-27 Thursday 10:14 Rocky Bernstein <rocky@panix.com>
* dbg-brk.inc, dbg-file.inc, dbg-fns.inc, dbg-help.inc, dbg-io.inc:
_filenames -> _Dbg_filenames. Array now has expanded name Add
routine to print filename in form appropriate to annotation and
basename only
2003-02-27 Thursday 07:33 Rocky Bernstein <rocky@panix.com>
* NEWS: _bashdb_ -> _Dbg_
2003-02-27 Thursday 07:27 Rocky Bernstein <rocky@panix.com>
* bashdb, dbg-brk.inc, dbg-cmds.inc, dbg-file.inc, dbg-fns.inc,
dbg-help.inc, dbg-hist.inc, dbg-init.inc, dbg-io.inc, dbg-list.inc,
dbg-main.inc, dbg-pre.inc.in, dbg-set-d-vars.inc, dbg-set.inc,
dbg-sig-ret.inc, dbg-sig.inc, dbg-stack.inc, tests/bugIFS.cmd,
tests/misc.cmd, tests/misc.right, tests/sig.right: All _bashdb_
variables renamed _Dbg_. Might help for debuggers in other POSIX
shells.
2003-02-27 Thursday 04:34 Rocky Bernstein <rocky@panix.com>
* NEWS, dbg-help.inc, dbg-init.inc, dbg-set.inc, tests/misc.cmd,
tests/misc.right: Add "set annotate." More better set/show
regression tests.
2003-02-25 Tuesday 16:22 Rocky Bernstein <rocky@panix.com>
* dbg-brk.inc, tests/brkpt2.right, tests/watch1.right: A little
closer to gdb. Mesage reads breakpoint already hit 1 time or
breakpoint already hit n times
2003-02-25 Tuesday 15:55 Rocky Bernstein <rocky@panix.com>
* dbg-brk.inc, tests/action.right, tests/brkpt1.right,
tests/brkpt2.right, tests/brkpt3.right, tests/bugIFS.right,
tests/debug.right, tests/display.right, tests/finish.right,
tests/parm.right, tests/tbreak.right, tests/watch1.right,
tests/watch2.right: Make breakpoints look more like gdb. It helps
ddd parsing.
2003-02-23 Sunday 20:40 Rocky Bernstein <rocky@panix.com>
* dbg-file.inc: Add tilde to list of translation characters.
2003-02-19 Wednesday 23:45 Rocky Bernstein <rocky@panix.com>
* dbg-brk.inc, dbg-cmds.inc, dbg-io.inc, dbg-sig.inc: Some declare
-a's turned into typeset -a on the hope (from David Korn) that this
will be legal ksh.
2003-02-18 Tuesday 00:23 Rocky Bernstein <rocky@panix.com>
* .cvsignore: bashdb- -> dbg-
2003-02-18 Tuesday 00:23 Rocky Bernstein <rocky@panix.com>
* Makefile.am, bashdb-sig-ret.inc, dbg-sig-ret.inc: Miscellaneous
small changes for new version and bashdb- -> dbg- changes.
2003-02-18 Tuesday 00:02 Rocky Bernstein <rocky@panix.com>
* Makefile.am, TODO, bashdb, bashdb-brk.inc, bashdb-cmds.inc,
bashdb-file.inc, bashdb-fns.inc, bashdb-help.inc, bashdb-hist.inc,
bashdb-init.inc, bashdb-io.inc, bashdb-list.inc, bashdb-main.inc,
bashdb-set-d-vars.inc, bashdb-set.inc, bashdb-sig.inc,