-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
4260 lines (3954 loc) · 87.2 KB
/
ChangeLog
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
2006-06-14 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Interface.init
update info for alphasort/scandir (no functional change)
2006-06-09 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Interface.init
bug 1374: fooled by interface split between headers; fix
breakage
2006-06-08 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Interface.init
cleanups on __fpclassify*/__signbit* per bug 1377
2006-06-07 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Standard.init
Interface.init
change matherr Istandard to SVID.3 per bug 1291
2006-06-02 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Interface.init
fix some more data entry errors
2006-06-01 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Interface.init
ArchConst.init
Interface.init
complete bug 1349: this is the dumped version after updating the
master DB
2006-05-31 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Interface.init
restore or add missing POSIX interfaces to allows for better
difference-to- POSIX questies. None are Included so no impact.
Bugs 1393, 1388, 1395.
2006-05-06 Marvin Heffler <heffler_at_us.ibm.com>
* ArchConst.init
db changes to make G_BYTE_ORDER arch specific - see bug 1349
2006-05-04 Mats Wichmann <mats.d.wichmann_at_intel.com>
* ModCmd.init
add builtin cmds to ModCmd (bug 1344)
2006-03-22 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Parameter.init
Interface.init
bug 1295
2006-03-20 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Vtable.init
ArchClass.init
ArchInt.init
ArchLib.init
BaseTypes.init
ClassInfo.init
ClassVtab.init
Interface.init
LGInt.init
LibGroup.init
Library.init
ModLib.init
Module.init
Standard.init
Type.init
VMIBaseTypes.init
Adding qt3
2006-03-15 Mats Wichmann <mats.d.wichmann_at_intel.com>
* ArchConst.init
Fixed for bug 1288
2006-03-14 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Library.init
ArchLib.init
Fix library name per bug 1287
2006-03-13 Mats Wichmann <mats.d.wichmann_at_intel.com>
* TypeMember.init
Fixing for bug 1277
2006-03-09 Marvin Heffler <heffler_at_us.ibm.com>
* ArchType.init
add lots of entries for the four IBM archs
2006-03-04 Mats Wichmann <mats.d.wichmann_at_intel.com>
* TypeMember.init
ArchType.init
Type.init
Changes for bug 1276
2006-03-03 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Type.init
The real fix for 1271 (what happened last time???)
2006-02-28 Marvin Heffler <heffler_at_us.ibm.com>
* Interface.init
correct mangled names for several interfaces as described in bug
1247
2006-02-27 Mats Wichmann <mats.d.wichmann_at_intel.com>
* ArchTypeMem.init
ArchConst.init
ArchType.init
ArchTypeMem.init
Make cvs match the master's "make dump"
2006-02-25 Marvin Heffler <heffler_at_us.ibm.com>
* ArchTypeMem.init
ArchType.init
more db changes to correct size info for several archs
2006-02-24 Marvin Heffler <heffler_at_us.ibm.com>
* ArchTypeMem.init
ArchConst.init
ArchType.init
ArchTypeMem.init
change SHMLBA for s390x to use __getpagesize instead of of 4096;
define G_VA_COPY_AS_ARRAY for ppc32 and s390 archs.
2006-02-23 Mats Wichmann <mats.d.wichmann_at_intel.com>
* TypeMember.init
Bug 1194: _sa_sigaction for ppc64.
2006-02-17 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* ArchLib.init
entries for creating Arch specific specs for GTK libraries
2006-02-16 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* ArchType.init
fix bug 1229; added entries for libpng_ver variable for all
archs
2006-02-15 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* TypeMember.init
ArchConst.init
ArchType.init
ArchTypeMem.init
Constant.init
HeaderGroup.init
Type.init
Type and macro updates due to glibconfig synchup for 32 and
64bit archs. Size info for x86-64 and IA64 after running devchk.
2006-02-11 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* TypeMember.init
ArchConst.init
ArchType.init
ArchTypeMem.init
Constant.init
Interface.init
Type.init
removed a bunch of deprecated interfaces, macros and types for
GTK and GDK.
2006-02-10 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* Type.init
ArchType.init
Interface.init
fix bug 1218
2006-02-07 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* Type.init
ArchConst.init
ArchType.init
Constant.init
Interface.init
bug 1210 fixes
2006-02-03 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* Vtable.init
updates from bug 1178
2006-02-01 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* Type.init
The latest mkheader patch takes care of the situation where
typedef is directly to a struct pointer. Changing
__locale_struct to Referenced instead of Indirect as the patch
will take care of mkheader issue. Please see notes in bug 1045.
2006-01-31 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* Interface.init
ArchType.init
IA32 size for FcChar16
2006-01-30 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* Type.init
ArchType.init
Interface.init
size info entry for FcChar16 type added
2006-01-26 Pradosh Adoni <pradosh.adoni_at_codito.com>
* Vtable.init
Interface.init
LGInt.init
- Harald Fernengel's fix for libchk failures for QT RPMS on SuSe
10.0
2006-01-26 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* Vtable.init
ArchClass.init
ArchInt.init
Interface.init
LGInt.init
VMIBaseTypes.init
Vtable.init
bug 1174 and 1175 fixes: libchk and mandriva package compliance
2006-01-25 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* Vtable.init
ArchClass.init
ArchConst.init
ArchLib.init
ClassInfo.init
ClassVtab.init
Constant.init
Standard.init
VMIBaseTypes.init
changes for Qt classes discovered while getting libchk working.
2006-01-24 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* Type.init
ArchConst.init
ArchType.init
Interface.init
LGInt.init
Parameter.init
Type.init
updates for libxml2: removed __ interfaces; added a type and 4
symbols
2006-01-23 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* LGInt.init
ArchInt.init
Interface.init
syncing in latest updates from Harald for Arch specific entries
2006-01-21 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* Interface.init
some of (about 10) Qt interfaces were with Arch=2 instead of 1
like all others. Checking this change pending Harald's
verification. This was causing issues in Spec building process
for Core appendix
2006-01-20 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* Standard.init
changing png and jpeg to reference standards
2006-01-19 Harald Fernengel <harald_at_trolltech.com>
* ArchType.init
I was so busy making sure that all those other platforms behave
well that I forgot to add the size info for IA32 :)
2006-01-19 Pradosh Adoni <pradosh.adoni_at_codito.com>
* Standard.init
- Fix for bug #1166
(http://bugs.linuxbase.org/show_bug.cgi?id=1166): got rid of
invalid characters in the table
2006-01-18 Harald Fernengel <harald_at_trolltech.com>
* Vtable.sql
ArchClass.init
ArchClass.sql
ArchConst.sql
ArchInt.init
ArchInt.sql
ArchLib.init
ArchLib.sql
ArchType.init
ArchType.sql
ArchTypeMem.sql
Architecture.sql
BaseTypes.init
BaseTypes.sql
ClassInfo.init
ClassInfo.sql
ClassVtab.init
ClassVtab.sql
CmdInt.sql
CmdLib.sql
Command.sql
Constant.sql
DynamicEntries.sql
ElfSections.sql
Header.init
Header.sql
HeaderGroup.init
HeaderGroup.sql
Interface.init
Interface.sql
LGInt.init
LGInt.sql
LibGroup.init
LibGroup.sql
Library.init
Library.sql
ModCmd.sql
ModLib.init
ModLib.sql
Module.sql
Parameter.sql
ProfLib.sql
Profile.sql
RpmTag.sql
SectionTypes.sql
Standard.init
Standard.sql
TestCmd.sql
TestInt.sql
TestSuite.sql
Type.init
Type.sql
TypeMember.init
TypeMember.sql
TypeType.sql
VMIBaseTypes.init
VMIBaseTypes.sql
VerInt.sql
Version.sql
Vtable.init
Add QtCore, QtGui, QtSql, QtSvg, QtXml, QtNetwork, QtOpenGL
2006-01-18 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Vtable.sql
ArchClass.sql
ArchConst.sql
ArchInt.sql
ArchLib.sql
ArchType.sql
ArchTypeMem.sql
Architecture.sql
BaseTypes.sql
ClassInfo.sql
ClassVtab.sql
CmdInt.sql
CmdLib.sql
Command.sql
Constant.sql
DynamicEntries.sql
ElfSections.sql
Header.sql
HeaderGroup.sql
Interface.sql
LGInt.sql
LibGroup.sql
Library.sql
ModCmd.init
ModCmd.sql
ModLib.sql
Module.sql
Parameter.sql
ProfLib.sql
Profile.sql
RpmTag.sql
SectionTypes.sql
Standard.sql
TestCmd.sql
TestInt.sql
TestSuite.sql
Type.sql
TypeMember.sql
TypeType.sql
VMIBaseTypes.sql
VerInt.sql
Version.sql
Resync: after the last two sets of changes not made through the
live DB, this is the reload-and-dump of that data through the
live DB.
2006-01-18 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* ArchTypeMem.init
ArchType.init
Fixing Aid information for some of the types (added by addType
script). Reram devchk on IA32 and x86-64
2006-01-17 Rajesh Banginwar <rajesh.banginwar_at_intel.com>
* TypeMember.init
ArchConst.init
ArchLib.init
ArchType.init
ArchTypeMem.init
Command.init
Constant.init
Header.init
HeaderGroup.init
Interface.init
LGInt.init
LibGroup.init
Library.init
ModLib.init
Module.init
Parameter.init
Standard.init
Type.init
adding DB entries for desktop libraries: libjpeg, libpng,
libfontconfig, fontconfig cmds, libxml2, all GTK+ stack
libraries Arch size info for IA32 and x86-64 archs only. For
other archs, devchk need to be run.
2006-01-16 Pradosh Adoni <pradosh.adoni_at_codito.com>
* Vtable.init
- Fix for bug # 1046
(http://bugs.linuxbase.org/show_bug.cgi?id=1046).contributed by
Jeff Licquia
2006-01-06 Pradosh Adoni <pradosh.adoni_at_codito.com>
* Command.init
- Changed Cpath for fontconfig commands to be actually null
rather than a string "NULL"
2006-01-05 Nick Stoughton <nick_at_usenix.org>
* Interface.init
fix return types for several X11 interfaces (mostly where the
return types were the #define'd Status or Bool types, both of
which are actully int).
2006-01-05 Pradosh Adoni <pradosh.adoni_at_codito.com>
* ModCmd.sql
ModCmd.init
- Relation table to show the relationship between commands and
modules.(See bug #1114 -
http://bugs.linuxbase.org/show_bug.cgi?id=1114 ) - Only Added
commands included in LSB-Core and LSB-Graphics-Ext
2006-01-02 Nick Stoughton <nick_at_usenix.org>
* Standard.init
move IEEE floating point and SUSv2-XCU to Reference materials
only
2005-12-23 Pradosh Adoni <pradosh.adoni_at_codito.com>
* Constant.init
ArchConst.init
Command.init
Bug fix for broken entries -
http://bugs.linuxbase.org/show_bug.cgi?id=1095
2005-12-22 Pradosh Adoni <pradosh.adoni_at_codito.com>
* Standard.init
Fontconfig standard added
2005-12-03 Nick Stoughton <nick_at_usenix.org>
* Standard.init
update for LSB itself now it is an ISO standard (and for
improved xrefs from ARCHlsbs)
2005-11-16 Vinay Pawar <vinay.pawar_at_codito.com>
* Standard.init
Rolling back following changes: "™" to "&trade"
and added <PARA> </PARA> tags, as before Note: Changes prior to
"this" commit did not follow the specdb protocol as mentioned in
the 00README.
2005-11-10 Pradosh Adoni <pradosh.adoni_at_codito.com>
* Type.sql
In response to Bug #1112
(http://bugs.linuxbase.org/show_bug.cgi?id=1112) Updated Ttype
identifiers to include 'Volatile' type qualifier
2005-10-25 Nick Stoughton <nick_at_usenix.org>
* Parameter.init
Header.init
HeaderGroup.init
Interface.init
added (almost) complete defs for rpc/pmap_clnt.h and err.h
(skipped the defered interfaces).
2005-10-24 Nick Stoughton <nick_at_usenix.org>
* Interface.init
Header.init
HeaderGroup.init
add err.h as header for err(), error(), errx(), warn() and
warnx()
2005-10-12 Nick Stoughton <nick_at_usenix.org>
* Interface.init
move htonl, htons, ntohl, and ntohs from netinet/in.h to
arpa/inet.h See bug 1099.
2005-10-11 Nick Stoughton <nick_at_usenix.org>
* ElfSections.init
update description for PPC64 .opd section - see bug 1079
2005-10-07 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Standard.init
Constant.sql
Module.init
RpmTag.init
Expand Constant.Cname per bug 1094
2005-09-30 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Command.init
install_initd, remove_initd should have had paths (part of bug
1006)
2005-09-23 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Command.sql
Command.init
For bug 1006: clear command paths when not required. Adjusted
Command table somewhat to accomodate.
2005-09-23 Nick Stoughton <nick_at_usenix.org>
* Command.init
added zcat
2005-09-20 Mats Wichmann <mats.d.wichmann_at_intel.com>
* ChangeLog
Generated a ChangeLog per request
2005-09-20 Nick Stoughton <nick_at_usenix.org>
* Standard.init
ElfSections.init
fix typo
2005-09-20 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Type.init
Fix broken reference to xprt_stat
2005-09-19 Nick Stoughton <nick_at_usenix.org>
* makefile
00README
ElfSections.init
options are now in the makefile ... you don't need a .my.cnf
file!
2005-09-16 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Vtable.sql
ArchClass.init
ArchClass.sql
ArchConst.init
ArchConst.sql
ArchInt.init
ArchInt.sql
ArchLib.init
ArchLib.sql
ArchType.init
ArchType.sql
ArchTypeMem.init
ArchTypeMem.sql
Architecture.init
Architecture.sql
BaseTypes.init
BaseTypes.sql
ClassInfo.init
ClassInfo.sql
ClassVtab.init
ClassVtab.sql
CmdInt.init
CmdInt.sql
CmdLib.init
CmdLib.sql
Command.init
Command.sql
Constant.init
Constant.sql
DynamicEntries.init
DynamicEntries.sql
ElfSections.init
ElfSections.sql
Header.init
Header.sql
HeaderGroup.init
HeaderGroup.sql
Interface.init
Interface.sql
LGInt.init
LGInt.sql
LibGroup.init
LibGroup.sql
Library.init
Library.sql
ModLib.init
ModLib.sql
Module.init
Module.sql
Parameter.init
Parameter.sql
ProfLib.sql
Profile.sql
RpmTag.init
RpmTag.sql
SectionTypes.init
SectionTypes.sql
Standard.init
Standard.sql
TestCmd.init
TestCmd.sql
TestInt.init
TestInt.sql
TestSuite.init
TestSuite.sql
Type.init
Type.sql
TypeMember.init
TypeMember.sql
TypeType.init
TypeType.sql
VMIBaseTypes.init
VMIBaseTypes.sql
VerInt.init
VerInt.sql
Version.init
Version.sql
Vtable.init
Syncing on-line database into cvs. After this we stay in sync!!!
2005-09-14 Nick Stoughton <nick_at_usenix.org>
* ElfSections.init
00README
add description of .my.cnf to ensure that dump options are
correct.
2005-09-09 Nick Stoughton <nick_at_usenix.org>
* RpmTag.init
Post Singapore meeting update.
2005-09-07 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Type.init
Redo bug 1072 fix: xprt_stat should have been Referenced, not
Included
2005-09-07 Nick Stoughton <nick_at_usenix.org>
* 00README
An inital stab at some rules to work in this directory
2005-09-02 Nick Stoughton <nick_at_usenix.org>
* ArchConst.sql
ArchConst.init
Update of ArchConst to handle long definitions.
2005-09-01 Nilesh Jain <nilesh.jain_at_intel.com>
* makefile
ArchType.init
Constant.init
Interface.init
Module.init
Parameter.init
Type.init
TypeMember.init
makefile
Remove bogus data bug #1048
2005-08-25 Nick Stoughton <nick_at_usenix.org>
* Standard.init
update C++ ABI reference
2005-08-17 Nick Stoughton <nick_at_usenix.org>
* makefile
ArchClass.init
ArchClass.sql
ArchConst.init
ArchConst.sql
ArchInt.init
ArchInt.sql
ArchLib.init
ArchLib.sql
ArchType.init
ArchType.sql
ArchTypeMem.init
ArchTypeMem.sql
Architecture.init
Architecture.sql
BaseTypes.init
BaseTypes.sql
ClassInfo.init
ClassInfo.sql
ClassVtab.init
ClassVtab.sql
CmdInt.init
CmdInt.sql
CmdLib.init
CmdLib.sql
Command.init
Command.sql
Constant.init
Constant.sql
DynamicEntries.init
DynamicEntries.sql
ElfSections.init
ElfSections.sql
Header.init
Header.sql
HeaderGroup.init
HeaderGroup.sql
Interface.init
Interface.sql
LGInt.init
LGInt.sql
LibGroup.init
LibGroup.sql
Library.init
Library.sql
ModLib.init
ModLib.sql
Module.init
Module.sql
Parameter.init
Parameter.sql
ProfLib.sql
Profile.sql
RpmTag.init
RpmTag.sql
SectionTypes.init
SectionTypes.sql
Standard.init
Standard.sql
TestCmd.init
TestCmd.sql
TestInt.init
TestInt.sql
TestSuite.init
TestSuite.sql
Type.init
Type.sql
TypeMember.init
TypeMember.sql
TypeType.init
TypeType.sql
VMIBaseTypes.init
VMIBaseTypes.sql
VerInt.init
VerInt.sql
Version.init
Version.sql
Vtable.init
Vtable.sql
db dump
2005-06-24 Mats Wichmann <mats.d.wichmann_at_intel.com>
* ElfSections.init
ArchConst.init
ElfSections.init
Commit DB changes: bug 1008 (FE_UPWARD and TIOCGWINSZ), bug 997
(.sbss section on IA64, from Nick)
2005-06-22 Mats Wichmann <mats.d.wichmann_at_intel.com>
* TypeMember.init
ArchInt.init
ArchType.init
Command.init
Interface.init
LGInt.init
LibGroup.init
Parameter.init
Type.init
Database dump after changes for bug 853. Note there are a bunch
of other changes too - this should be checked carefully to make
sure nothing leaked through.
2005-06-15 Stuart Anderson <anderson_at_freestandards.org>
* Standard.init
ElfSections.init
add .gcc_except_table
2005-06-10 Stuart Anderson <anderson_at_freestandards.org>
* Version.init
ArchInt.init
Command.init
Interface.init
LGInt.init
Standard.init
RC4 data
2005-06-06 Stuart Anderson <anderson_at_freestandards.org>
* Version.init
ArchInt.init
Command.init
HeaderGroup.init
Interface.init
LGInt.init
Parameter.init
Type.init
TypeMember.init
Recent changes
2005-06-01 Stuart Anderson <anderson_at_freestandards.org>
* Standard.init
ArchType.init
Fix the size of a pointer on S390X
2005-05-26 Stuart Anderson <anderson_at_freestandards.org>
* Type.init
LGInt.init
LibGroup.init
RpmTag.init
Standard.init
LSB 3.0Rc3
2005-05-05 Stuart Anderson <anderson_at_freestandards.org>
* SectionTypes.init
ArchConst.init
ArchInt.init
ClassInfo.init
Constant.init
Interface.init
LGInt.init
LibGroup.init
Snapshot recent changes
2005-05-03 Stuart Anderson <anderson_at_freestandards.org>
* Standard.init
ArchInt.init
ArchLib.init
Interface.init
ModLib.init
Sync w/ DB
2005-05-02 Stuart Anderson <anderson_at_freestandards.org>
* TypeMember.init
ArchInt.init
ArchLib.init
ArchType.init
ArchTypeMem.init
Interface.init
LGInt.init
LibGroup.init
Library.init
Type.init
Sync DB - Add XINPUT & fix symbols version, missing C++ int, etc
2005-04-27 Stuart Anderson <anderson_at_freestandards.org>
* Standard.init
Clarify DWARF 2/3
2005-04-26 Stuart Anderson <anderson_at_freestandards.org>
* TypeMember.init
ArchConst.init
ArchInt.init
ArchType.init
ArchTypeMem.init
Command.init
Constant.init
Header.init
HeaderGroup.init
Interface.init
LGInt.init
LibGroup.init
Parameter.init
Standard.init
Type.init
Sync the DB
2005-04-01 Stuart Anderson <anderson_at_freestandards.org>
* Type.init
ArchConst.init
ArchLib.init
Interface.init
LGInt.init
LibGroup.init
Library.init
ModLib.init
Module.init
Parameter.init
Add librt and renam the modules a bit
2005-04-01 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Module.init
backports
2005-03-30 Stuart Anderson <anderson_at_freestandards.org>
* Vtable.init
ArchConst.init
ArchInt.init
ArchType.init
ArchTypeMem.init
ClassInfo.init
ClassInfo.sql
ClassVtab.init
Command.init
Constant.init
ElfSections.init
HeaderGroup.init
Interface.init
LGInt.init
Parameter.init
SectionTypes.init
Standard.init
Type.init
TypeMember.init
LSB 3.0Preview1
2005-03-18 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Standard.init
Typo
2005-03-14 Stuart Anderson <anderson_at_freestandards.org>
* TypeMember.init
ArchConst.init
ArchInt.init
ArchType.init
ArchTypeMem.init
Command.init
Constant.init
DynamicEntries.init
Header.init
HeaderGroup.init
Interface.init
LGInt.init
Parameter.init
RpmTag.init
RpmTag.sql
SectionTypes.init
Standard.init
Type.init
Snapshot of the 3.0 changes
2005-03-11 Stuart Anderson <anderson_at_freestandards.org>
* Standard.init
Fix a bad URL
2005-03-11 Mats Wichmann <mats.d.wichmann_at_intel.com>
* Command.init
Corrrect paths of install_initd, remove_initd
2005-03-10 Mats Wichmann <mats.d.wichmann_at_intel.com>
* makefile
Stamp out last instance of hardcoded db name
2005-03-08 Stuart Anderson <anderson_at_freestandards.org>
* TypeMember.init
ArchType.init
ArchTypeMem.init
Command.init
Command.sql
Constant.init
Interface.init
Interface.sql
LGInt.init
ModLib.init
Module.init
Type.init
Sync in changes
2005-03-02 Stuart Anderson <anderson_at_freestandards.org>
* TypeMember.init
ArchType.init
ArchTypeMem.init
Interface.init
Interface.sql
Type.init
update jmpbuf structures for Power archs
2005-02-25 Stuart Anderson <anderson_at_freestandards.org>
* Vtable.init
ArchClass.init
ArchInt.init
ArchType.init
ClassInfo.init
ClassVtab.init
Interface.init
Standard.init
Type.init
libchk is clean on most arch now
2005-02-22 Stuart Anderson <anderson_at_freestandards.org>
* Vtable.init
ClassInfo.init
ClassVtab.init
A few more class fixes done on an airplane
2005-02-17 Stuart Anderson <anderson_at_freestandards.org>
* Vtable.init
ArchClass.init
ClassInfo.init
ClassVtab.init
Command.init
Interface.init
Standard.init
Snapshot of cleaned up C++ data
2005-02-08 Stuart Anderson <anderson_at_freestandards.org>
* dbperms.sql
ArchClass.init
ArchClass.sql
ArchLib.init
ClassInfo.init
ClassInfo.sql
ClassVtab.init
ClassVtab.sql
Vtable.init
Vtable.sql
Restructure how Vtables are represented.
2005-02-01 Stuart Anderson <anderson_at_freestandards.org>
* dbperms.sql
ArchClass.init
ArchInt.init
ArchLib.init
ClassInfo.init
Interface.init
LGInt.init
LibGroup.init
Library.init
Version.init
Vtable.init
Upgrade libstdc++ to the v6 abi
2005-01-28 Stuart Anderson <anderson_at_freestandards.org>
* Type.init
ArchInt.init
Constant.init
HeaderGroup.init