-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathChangeLog
4002 lines (2377 loc) · 108 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-05-25 Thursday 15:00 nick_voronin
* src/api_jam.c (1.21): This fix prevents infinite loop in cleanup
procedure on abnormal termination (opened messages in jam
databases).
2006-05-24 Wednesday 20:02 ssianky
* make/: SmapiDll.8.vcproj (1.2), SmapiDll.vcproj (1.2),
SmapiDll.70.vcproj (1.1), SmapiDll.71.vcproj (1.1),
SmapiDll.80.vcproj (1.1): Renamed to projname.XX.vcproj, where XX
is compiler version.
2006-02-09 Thursday 12:16 nick_voronin
* src/msgapi.c (1.9): bug with kludges > 64k fixed
2006-01-14 Saturday 12:14 stas_degteff
* src/api_sdm.c (1.12): Fix OPUS messagebase limit check. Thanks to
Alexander Shiyan 2:5030/39.2
2005-12-17 Saturday 20:52 stas_degteff
* smapi/msgapi.h (1.8), src/api_sdm.c (1.11), src/msgapi.c (1.8):
Prevent unsigned overflow of message counter
2005-12-14 Wednesday 16:32 stas_degteff
* src/api_sdm.c (1.10): Fix SEGFAULT if memory low at msg creating.
Bugreport from Andrew A. Leonov
2005-09-27 Tuesday 08:29 stas_degteff
* make/makefile.mgw (1.3): Fix: replace spaces with tab. Thanks to
Nickita Startcev
2005-06-06 Monday 07:55 mche
* make/SmapiDll.8.vcproj (1.1): project files for MSVC 8.0 added
2005-04-01 Friday 10:27 nick_voronin
* src/api_jam.c (1.20): Null reserved HiID in jam subfield
structure
2005-03-27 Sunday 12:37 nick_voronin
* src/api_jam.c (1.19): Write correct ReplyCRC in message header if
no REPLYID string exists.
2005-02-03 Thursday 18:53 val_khokhlov
* src/api_jam.c (1.18): move gettz() function to huskylib
2004-08-20 Friday 12:05 pgul
* src/api_jam.c (1.17): Fixed bug in previous patch (patch by Nick
Voronin)
2004-08-17 Tuesday 15:16 val_khokhlov
* src/api_jam.c (1.16): fix compilation errors with gcc/freebsd
after previous patches
2004-08-05 Thursday 09:41 pgul
* smapi/api_jamp.h (1.6), src/api_jam.c (1.15): Fixed small memory
leak, several potential problems with nul-terminated strings
(patch by Nick Voronin)
2004-05-25 Tuesday 21:24 pgul
* src/api_sdm.c (1.9): Inhibit compilation warning
2004-05-25 Tuesday 21:07 pgul
* src/api_jam.c (1.14): Fix previous patch
2004-05-25 Tuesday 12:49 pgul
* src/api_jam.c (1.13): Don't lose messages on sqpack if jam header
is incorrect
2004-05-23 Sunday 08:17 mche
* src/api_jam.c (1.12), src/structrw.c (1.5), smapi/api_jam.h
(1.4): fix writing jam headers [patch by Nick Voronin]
2004-04-13 Tuesday 09:37 sfpavel
* debian/compat (1.1): file compat was initially added on branch
smapi-2_4-stable.
2004-04-13 Tuesday 09:37 sfpavel
* debian/libsmapi-dev.install (1.1): file libsmapi-dev.install was
initially added on branch smapi-2_4-stable.
2004-04-13 Tuesday 09:37 sfpavel
* debian/libsmapi-dev.links (1.1): file libsmapi-dev.links was
initially added on branch smapi-2_4-stable.
2004-04-13 Tuesday 09:37 sfpavel
* debian/libsmapi-dev.preinst (1.1): file libsmapi-dev.preinst was
initially added on branch smapi-2_4-stable.
2004-04-13 Tuesday 09:37 sfpavel
* debian/libsmapi2.install (1.1): file libsmapi2.install was
initially added on branch smapi-2_4-stable.
2004-01-21 Wednesday 03:52 andr_lukyanov
* make/makefile.mvc (1.3): Fix MSVC compilation
2004-01-10 Saturday 14:54 d_sergienko
* src/api_jam.c (1.11): fixed bug with reading messages from JAM
base
2003-12-23 Tuesday 11:12 val_khokhlov
* smapi/: api_jam.h (1.3), api_jamp.h (1.5): mark jam api function
as HUSKYEXT in order to export them in dll
2003-10-27 Monday 13:12 stas_degteff
* src/api_jam.c (1.10): Fix warnings
2003-10-17 Friday 07:11 andr_lukyanov
* make/: makefile.cyg (1.4), makefile.djg (1.4), makefile.emx
(1.3): Fix compilation with huskymak.cfg.*
2003-10-13 Monday 12:57 d_sergienko
* make/makefile.bsd4 (1.3):
fixed building under FreeBSD 4.x
2003-09-19 Friday 06:08 stas_degteff
* src/api_jam.c (1.9): fix comment
2003-08-19 Tuesday 10:34 d_sergienko
* HISTORY (1.3), src/api_jam.c (1.8): Fetch orig address from MSGID
if it is not present in header
2003-08-10 Sunday 08:33 pgul
* src/msgapi.c (1.7): Do not skip first SostCR when write SDM
message
2003-07-27 Sunday 12:07 d_sergienko
* smapi/msgapi.h (1.7), src/api_jam.c (1.7): save extended lastread
in Jam base (for Taymir mailreader)
2003-06-16 Monday 14:18 lmike
* make/makefile.qnx (1.5): Added proper library dependcies for QNX6
2003-06-06 Friday 20:34 d_sergienko
* src/sq_uid.c (1.6): fixed twice buffer release
2003-06-05 Thursday 21:33 d_sergienko
* src/sq_uid.c (1.5): speedup converting uids to msgnums
(experimental, 3 times faster)
2003-05-25 Sunday 12:35 lmike
* make/makefile.qnx (1.4): Fixed bug with link to .so creation.
2003-05-23 Friday 04:32 lmike
* smapi.qpg (1.2): Previous commit was bad, fixed file contents
2003-05-20 Tuesday 14:45 d_sergienko
* readme.txt (1.11), smapi.qpg (1.1), make/makefile.inc (1.3),
make/makefile.qnx (1.3):
QNX fixes; added smapi.qpg
2003-05-15 Thursday 08:21 d_sergienko
* make/makefile.qnx (1.2): previous commit was bad
2003-05-15 Thursday 08:14 d_sergienko
* make/makefile.qnx (1.1): makefile.qnx added
2003-05-15 Thursday 08:13 d_sergienko
* src/api_jam.c (1.6):
QNX 6.x support
2003-04-25 Friday 04:39 andr_lukyanov
* make/: makefile.cyg (1.3), makefile.djg (1.3): Fixed compilation.
Remark DEBUG mode.
2003-04-12 Saturday 13:54 mche
* smapiDll.vcproj (1.2), make/SmapiDll.vcproj (1.1): change
location
2003-03-31 Monday 18:49 mche
* smapiDll.vcproj (1.1): vcproj Project File added for building
dynamyc smapi library in Microsoft Visual Studio .NET
2003-03-29 Saturday 20:31 d_sergienko
* strextra.c (1.7), strextra.h (1.7), src/api_jam.c (1.5),
src/sq_area.c (1.6): remove old strextra.* files. use functions
from huskylib instead.
2003-03-27 Thursday 21:26 d_sergienko
* smapi/msgapi.h (1.6): add macro getHAREA() for convenience
2003-03-25 Tuesday 13:14 stas_degteff
* make/: makefile.be (1.2), makefile.bsd (1.2), makefile.bsd4
(1.2), makefile.cyg (1.2), makefile.djg (1.2), makefile.emo
(1.2), makefile.emx (1.2), makefile.lnx (1.2), makefile.mgw
(1.2), makefile.rxw (1.2), makefile.sun (1.3), makefile.unx
(1.2): Prevent GCC warning about 'long long' type
2003-03-25 Tuesday 13:10 stas_degteff
* src/sq_idx.c (1.5): Replace LONG_MAX with signed_long_max
(defined in huskylib/compiler.h)
2003-03-24 Monday 12:06 stas_degteff
* smapi/api_sdmp.h (1.4), src/api_sdm.c (1.8): Prepare change SDM
message number var from 16 bit to 32 bit
2003-03-24 Monday 08:36 stas_degteff
* src/api_sdm.c (1.7): Check pointers before use
2003-03-24 Monday 07:24 stas_degteff
* src/msgapi.c (1.6): Use #ifdef HAS_SIGNAL_H instead #ifdef
__UNIX__ to use signal handling always if allowed
2003-03-24 Monday 06:01 stas_degteff
* smapi/api_brow.h (1.2), smapi/api_jam.h (1.2), smapi/api_jamp.h
(1.4), smapi/api_sdm.h (1.2), smapi/api_sdmp.h (1.3),
smapi/api_sq.h (1.4), smapi/api_sqp.h (1.2), smapi/msgapi.h
(1.5), smapi/old_msg.h (1.3), src/api_jam.c (1.4), src/api_sdm.c
(1.6), src/msgapi.c (1.5), src/sq_area.c (1.5), src/sq_hash.c
(1.5), src/sq_help.c (1.4), src/sq_idx.c (1.4), src/sq_kill.c
(1.4), src/sq_lock.c (1.4), src/sq_misc.c (1.4), src/sq_msg.c
(1.4), src/sq_read.c (1.4), src/sq_uid.c (1.4), src/sq_write.c
(1.4), src/structrw.c (1.4): Reorder includes from huskylib ;
always use HAS_*_H defines
2003-03-24 Monday 05:43 stas_degteff
* src/msgapi.c (1.4): Comment unused variable
2003-03-24 Monday 05:43 stas_degteff
* smapi/api_sdmp.h (1.2), src/api_sdm.c (1.5): Remove unused
variable '_junksqd'
2003-03-20 Thursday 13:22 stas_degteff
* VERSION (1.8): Update version of required library
2003-03-19 Wednesday 12:18 sfpavel
* debian/: changelog (1.23), control (1.11), libsmapi2-dev.files
(1.3), libsmapi2-dev.links (1.3), libsmapi2.dirs (1.4),
libsmapi2.files (1.6), libsmapi2cur-dev.files (1.1),
libsmapi2cur-dev.links (1.1), libsmapi2cur.dirs (1.1),
libsmapi2cur.files (1.1), overrides (1.2), rules (1.11): New
debian package
2003-03-19 Wednesday 09:39 sfpavel
* make/makefile.inc (1.2), smapi/msgapi.h (1.4), src/qksort.c
(1.2): Move qksort.c to huskylib
2003-03-19 Wednesday 09:10 sfpavel
* flushasm.asm (1.2), sqasm.asm (1.2), make/makefile.aix (1.2),
make/makefile.bcd (1.2), make/makefile.bco (1.2),
make/makefile.bcw (1.2), make/makefile.mvc (1.2),
make/makefile.mvcdll (1.4), make/makefile.sun (1.2): Unify
makefiles; use one makefile for build MS VC static and dll
library
2003-03-18 Tuesday 06:06 stas_degteff
* src/sq_area.c (1.4): Fix _SquishCreateNewBase(): don't rewrite
old file
2003-03-17 Monday 12:09 sfpavel
* make/makefile.mvcdll (1.3), smapi/api_jamp.h (1.3),
smapi/api_sq.h (1.3), smapi/msgapi.h (1.3), src/api_jam.c (1.3),
src/api_sdm.c (1.4), src/msgapi.c (1.3), src/sq_area.c (1.3),
src/sq_hash.c (1.4), src/sq_help.c (1.3), src/sq_idx.c (1.3),
src/sq_kill.c (1.3), src/sq_lock.c (1.3), src/sq_misc.c (1.3),
src/sq_msg.c (1.3), src/sq_read.c (1.3), src/sq_uid.c (1.3),
src/sq_write.c (1.3), src/structrw.c (1.3): Use standart HUSKYEXT
modifier for export functions from DLL
2003-03-17 Monday 08:23 sfpavel
* smapiDll.dsp (1.7), smapiStatic.dsp (1.4), make/smapiDll.dsp
(1.1), make/smapiStatic.dsp (1.1): Move MSVC *.dsp files to
'make' subdir
2003-03-12 Wednesday 11:22 sfpavel
* make/makefile.mvcdll (1.2), smapi/api_jamp.h (1.2),
smapi/api_sq.h (1.2), smapi/msgapi.h (1.2), smapi/old_msg.h
(1.2), src/api_jam.c (1.2), src/api_sdm.c (1.3), src/msgapi.c
(1.2), src/sq_area.c (1.2), src/sq_hash.c (1.3), src/sq_help.c
(1.2), src/sq_idx.c (1.2), src/sq_kill.c (1.2), src/sq_lock.c
(1.2), src/sq_misc.c (1.2), src/sq_msg.c (1.2), src/sq_read.c
(1.2), src/sq_uid.c (1.2), src/sq_write.c (1.2), src/structrw.c
(1.2): Reorganize headers for build with makefile.mvcdll
2003-03-12 Wednesday 05:56 sfpavel
* date2bin.c (1.11), dosdate.c (1.3), dr.h (1.3), progprot.h
(1.24), stamp.h (1.8), strftim.c (1.9), src/api_sdm.c (1.2),
src/sq_hash.c (1.2): Remove old files
2003-03-11 Tuesday 20:55 sfpavel
* 1stchar.c (1.5), months.c (1.2), strocpy.c (1.3), trail.c (1.3),
weekday.c (1.2), src/flush.c (1.2): Remove old files
2003-03-11 Tuesday 14:07 sfpavel
* sq_area.c (1.33): Fix _SquishCreateNewBase(): don't rewrite old
file
2003-03-11 Tuesday 14:07 sfpavel
* Makefile (1.41), api_brow.h (1.3), api_jam.c (1.107), api_jam.h
(1.12), api_jamp.h (1.21), api_sdm.c (1.43), api_sdm.h (1.7),
api_sdmp.h (1.5), api_sq.h (1.9), api_sqp.h (1.10), apidebug.h
(1.2), flush.c (1.20), makefile.aix (1.7), makefile.bcd (1.19),
makefile.bco (1.15), makefile.bcw (1.15), makefile.be (1.9),
makefile.bsd (1.34), makefile.bsd4 (1.12), makefile.cyg (1.13),
makefile.djg (1.24), makefile.emo (1.26), makefile.emx (1.19),
makefile.hco (1.16), makefile.ibo (1.21), makefile.inc (1.14),
makefile.lnx (1.33), makefile.mgw (1.21), makefile.mvc (1.16),
makefile.mvcdll (1.18), makefile.qcd (1.19), makefile.rxw (1.18),
makefile.sun (1.24), makefile.unx (1.21), makefile.wcd (1.27),
makefile.wco (1.24), makefile.wcw (1.29), makefile.wcx (1.24),
msgapi.c (1.44), msgapi.h (1.72), old_msg.h (1.6), prog.h (1.14),
qksort.c (1.4), smapi.pas (1.3), sq_hash.c (1.11), sq_help.c
(1.13), sq_idx.c (1.14), sq_kill.c (1.11), sq_lock.c (1.27),
sq_misc.c (1.12), sq_msg.c (1.13), sq_read.c (1.14), sq_uid.c
(1.12), sq_write.c (1.16), structrw.c (1.40), unused.h (1.2),
debian/changelog (1.22), make/makefile.aix (1.1),
make/makefile.bcd (1.1), make/makefile.bco (1.1),
make/makefile.bcw (1.1), make/makefile.be (1.1),
make/makefile.bsd (1.1), make/makefile.bsd4 (1.1),
make/makefile.cyg (1.1), make/makefile.djg (1.1),
make/makefile.emo (1.1), make/makefile.emx (1.1),
make/makefile.hco (1.1), make/makefile.ibo (1.1),
make/makefile.inc (1.1), make/makefile.lnx (1.1),
make/makefile.mgw (1.1), make/makefile.mvc (1.1),
make/makefile.mvcdll (1.1), make/makefile.qcd (1.1),
make/makefile.rxw (1.1), make/makefile.sun (1.1),
make/makefile.unx (1.1), make/makefile.wcd (1.1),
make/makefile.wco (1.1), make/makefile.wcw (1.1),
make/makefile.wcx (1.1), smapi/api_brow.h (1.1), smapi/api_jam.h
(1.1), smapi/api_jamp.h (1.1), smapi/api_sdm.h (1.1),
smapi/api_sdmp.h (1.1), smapi/api_sq.h (1.1), smapi/api_sqp.h
(1.1), smapi/apidebug.h (1.1), smapi/msgapi.h (1.1),
smapi/old_msg.h (1.1), src/api_jam.c (1.1), src/api_sdm.c (1.1),
src/flush.c (1.1), src/msgapi.c (1.1), src/qksort.c (1.1),
src/smapi.pas (1.1), src/sq_area.c (1.1), src/sq_hash.c (1.1),
src/sq_help.c (1.1), src/sq_idx.c (1.1), src/sq_kill.c (1.1),
src/sq_lock.c (1.1), src/sq_misc.c (1.1), src/sq_msg.c (1.1),
src/sq_read.c (1.1), src/sq_uid.c (1.1), src/sq_write.c (1.1),
src/structrw.c (1.1): Reorganize directory tree
2003-03-11 Tuesday 10:17 stas_degteff
* locking.c (1.40), makefile.bcd (1.18), makefile.inc (1.13): move
locking.c into huskylib
2003-03-11 Tuesday 09:16 stas_degteff
* api_sdm.c (1.42): Fix compiler warnings on BeOS
2003-03-11 Tuesday 09:12 stas_degteff
* locking.c (1.39): BeOS fix
2003-03-09 Sunday 17:58 os2tobi
* makefile.unx (1.20): fixed unx makefile for huskylib
2003-03-07 Friday 07:21 sfpavel
* compiler.h (1.173), cvtdate.c (1.14), fexist.c (1.33), ffind.c
(1.24), ffind.h (1.21), genmsgid.c (1.22), gnmsgid.c (1.9),
msgapi.h (1.71), parsenn.c (1.4), patmat.c (1.8), setfsize.c
(1.18), tdelay.c (1.17), typedefs.h (1.7): Remove old files
2003-03-07 Friday 07:08 sfpavel
* makefile.mvc (1.15), makefile.mvcdll (1.17): Reorganize makefiles
for MS VC
2003-03-05 Wednesday 16:31 sfpavel
* msgapi.h (1.70), old_msg.h (1.5), prog.h (1.13), stamp.h (1.7),
tdelay.c (1.16): Drop include for obsolete typedefs.h
2003-03-05 Wednesday 10:31 sfpavel
* api_jamp.h (1.20), api_sq.h (1.8), msgapi.h (1.69), patmat.h
(1.3), prog.h (1.12), sq_area.c (1.32), sq_hash.c (1.10),
sq_help.c (1.12), sq_idx.c (1.13), sq_kill.c (1.10), sq_lock.c
(1.26), sq_misc.c (1.11), sq_msg.c (1.12), sq_read.c (1.13),
sq_uid.c (1.11), stamp.h (1.6): Fix compiler warnings (C++
comments)
2003-03-05 Wednesday 10:30 sfpavel
* debian/: libsmapi2.dirs (1.3), overrides (1.1), rules (1.10): Fix
warnings for debian package
2003-03-05 Wednesday 10:30 sfpavel
* Makefile (1.40), makefile.inc (1.12): Use new defines from
makefile.inc at Makefile
2003-03-05 Wednesday 09:06 sfpavel
* VERSION (1.7), file_id.diz (1.4): Update version info
2003-03-05 Wednesday 08:47 sfpavel
* readme.txt (1.10), debian/README.Debian (1.6), debian/changelog
(1.21), debian/control (1.10), debian/copyright (1.5),
debian/docs (1.4), debian/libsmapi2-dev.files (1.2),
debian/libsmapi2-dev.preinst (1.4), debian/libsmapi2.files (1.5),
debian/rules (1.9), debian/shlibs (1.10): New debian package
2003-03-03 Monday 07:30 d_sergienko
* Makefile (1.39), api_jam.c (1.106), api_sdm.c (1.41), api_sq.h
(1.7), compiler.h (1.172), flush.c (1.19), gnmsgid.c (1.8),
locking.c (1.38), makefile.inc (1.11), msgapi.c (1.43), msgapi.h
(1.68), old_msg.h (1.4), progprot.h (1.23), qksort.c (1.3),
sq_area.c (1.31), sq_hash.c (1.9), sq_help.c (1.11), sq_idx.c
(1.12), sq_kill.c (1.9), sq_lock.c (1.25), sq_misc.c (1.10),
sq_msg.c (1.11), sq_read.c (1.12), sq_uid.c (1.10), sq_write.c
(1.15), structrw.c (1.39):
use new huskylib
2003-03-01 Saturday 19:28 stas_degteff
* 1stchar.c (1.4), api_jam.c (1.105), api_sdm.c (1.40), cvtdate.c
(1.13), date2bin.c (1.10), dosdate.c (1.2), fexist.c (1.32),
flush.c (1.18), genmsgid.c (1.21), gnmsgid.c (1.7), locking.c
(1.37), msgapi.c (1.42), parsenn.c (1.3), prog.h (1.11), qksort.c
(1.2), setfsize.c (1.17), sq_area.c (1.30), sq_hash.c (1.8),
sq_help.c (1.10), sq_idx.c (1.11), sq_kill.c (1.8), sq_lock.c
(1.24), sq_misc.c (1.9), sq_msg.c (1.10), sq_read.c (1.11),
sq_uid.c (1.9), sq_write.c (1.14), strftim.c (1.8), strocpy.c
(1.2), structrw.c (1.38), tdelay.c (1.15), trail.c (1.2): Divide
prog.h, stamp.h & progprot.h
2003-03-01 Saturday 18:57 stas_degteff
* api_sdm.c (1.39), date2bin.c (1.9), fexist.c (1.31), msgapi.c
(1.41): Replace eqstr? with str?cmp
2003-03-01 Saturday 18:57 stas_degteff
* api_jam.c (1.104): replace include progprot.h with include prog.h
2003-03-01 Saturday 18:54 stas_degteff
* compiler.h (1.171), prog.h (1.10): Move defines from prog.h into
compiler.h
2003-02-27 Thursday 13:33 stas_degteff
* compiler.h (1.170): Fix unixes declarations
2003-02-27 Thursday 13:21 stas_degteff
* compiler.h (1.169): Fix BeOS declarations
2003-02-21 Friday 19:20 stas_degteff
* compiler.h (1.168): Add some info about BeOS defines
2003-02-20 Thursday 12:01 stas_degteff
* HISTORY (1.2): Update bugfixes list
2003-02-20 Thursday 09:52 sfpavel
* HISTORY (1.1): Add HISTORY file
2003-02-19 Wednesday 13:53 stas_degteff
* compiler.h (1.167): Bugfix in defines
2003-02-19 Wednesday 08:58 stas_degteff
* compiler.h (1.166): Update DJGPP macroses: undef __UNIX__ UNIX
_UNIX __unix__ unix
2003-02-18 Tuesday 11:06 os2tobi
* COPYING (1.3), LICENSE (1.1), licence.txt (1.2): Changed license
terms to LGPL in agreement with Scott Dudley.
2003-02-18 Tuesday 04:54 stas_degteff
* compiler.h (1.165), makefile.djg (1.23): Fix djgpp build
2003-02-17 Monday 19:02 pgul
* api_jam.c (1.103), api_sdm.c (1.38), sq_area.c (1.29): Fixed
MsgDeleteBase() retcode
2003-02-16 Sunday 12:43 stas_degteff
* INSTALL (1.9): Rewrite installation instructions
2003-02-16 Sunday 12:02 stas_degteff
* makefile.bsd (1.33), readme.txt (1.9): Change BSD makefile for
using BSD version of make utility
2003-02-14 Friday 13:10 stas_degteff
* VERSION (1.6), msgapi.h (1.67), readme.txt (1.8): Change version
number to 2.5-current
2003-02-14 Friday 13:07 stas_degteff
* TODO (1.4): Change version number to 2.5-current
2003-02-07 Friday 08:21 stas_degteff
* msgapi.h (1.66): Add comments for CheckSmapiVersion()
2003-02-06 Thursday 11:40 sfpavel
* makefile.inc (1.10): Fix install of api_jam.h
2003-02-05 Wednesday 11:49 sfpavel
* msgapi.c (1.40), msgapi.h (1.65): Add CheckSmapiVersion() into
msgapi.h
2003-02-05 Wednesday 11:09 sfpavel
* Makefile (1.38), debian/changelog (1.20), debian/control (1.9),
debian/huskymak.cfg (1.12): New debian package
2003-02-05 Wednesday 07:52 sfpavel
* Makefile (1.37): Revert 1.31 patch - it's wrong
2003-02-05 Wednesday 06:28 stas_degteff
* msgapi.c (1.39): New function: CheckSmapiVersion()
2003-02-04 Tuesday 22:13 os2tobi
* compiler.h (1.164): remove bogus warning
2003-02-01 Saturday 22:14 stas_degteff
* api_jam.c (1.102), makefile.cyg (1.12), msgapi.c (1.38),
sq_area.c (1.28), sq_write.c (1.13): Fix warnings: differ in
signedness
2003-02-01 Saturday 16:02 d_sergienko
* Makefile (1.36): join cd && rm into one shell execution in
uninstall target
2003-02-01 Saturday 15:20 d_sergienko
* Makefile (1.35), makefile.inc (1.9): move headers into
makefile.inc from Makefile
2003-02-01 Saturday 10:26 d_sergienko
* Makefile (1.34): use $(OBJS), $(VER) and $(VERH) from
makefile.inc
2003-01-31 Friday 05:58 stas_degteff
* compiler.h (1.163): Update defines for linux & freebsd
2003-01-30 Thursday 14:08 gerritkuehn
* compiler.h (1.162): Linux has sleep.
2003-01-30 Thursday 08:29 stas_degteff
* compiler.h (1.161): Add info about Borland C
2003-01-27 Monday 20:27 stas_degteff
* compiler.h (1.160): Fix BSD compilation: sleep() and mktime()
presents.
2003-01-27 Monday 16:22 stas_degteff
* compiler.h (1.159): Update linux & bsd defines
2003-01-23 Thursday 22:17 d_sergienko
* Makefile (1.33): install static library when invoking 'make
install' instead of 'make' and only then 'make install'
2003-01-23 Thursday 10:37 stas_degteff
* compiler.h (1.158): Change FreeBSD macros description
2003-01-22 Wednesday 05:54 stas_degteff
* genmsgid.c (1.20): Fix: segdir existents check. Thanks to
Alexander Reznikov <[email protected]>
2003-01-21 Tuesday 11:52 quetschke
* compiler.h (1.157): strupr is defined for cygwin. (In newlib)
2003-01-21 Tuesday 10:45 stas_degteff
* makefile.bsd (1.32): Fix make error (replace 8 spaces to tab)
2003-01-21 Tuesday 09:46 stas_degteff
* genmsgid.c (1.19): Use HAS_IO_H from compiler.h
2003-01-21 Tuesday 09:38 stas_degteff
* genmsgid.c (1.18): Fix seqdir creation and improve performance.
Thanks to Alexander Reznikov 2:4600/220
2003-01-21 Tuesday 06:06 stas_degteff
* smapiDll.dsp (1.6), smapiStatic.dsp (1.3): 0x0a --> 0x0d0x0a for
*.dsp
2003-01-20 Monday 09:30 stas_degteff
* compiler.h (1.156): Fix O_BINARY, SH_DENYNO, P_WAIT
2003-01-20 Monday 09:12 stas_degteff
* makefile.bsd (1.31): Fix FreeBSD build
2003-01-18 Saturday 19:55 stas_degteff
* ffind.c (1.23): Fix mingw warning
2003-01-17 Friday 15:58 gerritkuehn
* compiler.h (1.155): Make CYGWING compiling again.
2003-01-17 Friday 15:39 d_sergienko
* compiler.h (1.154), strextra.c (1.6), strextra.h (1.6), strftim.c
(1.7):
implement strupr() for all systems except MSVC
2003-01-17 Friday 12:57 stas_degteff
* compiler.h (1.153): Add HAS_PROCESS_H
2003-01-17 Friday 09:21 gerritkuehn
* compiler.h (1.152): Added HAS_DIRENT_H for Linux and FreeBSD.
2003-01-17 Friday 09:20 gerritkuehn
* Makefile (1.32): Removed now unused header alc.h from Makefile.
2003-01-17 Friday 07:49 stas_degteff
* compiler.h (1.151): Add HAS_popen_pclose
2003-01-17 Friday 07:33 stas_degteff
* compiler.h (1.150): Fix mingw/cygwin defines: HAS_DIRECT_H -->
HAS_DIRENT_H
2003-01-17 Friday 07:23 stas_degteff
* strftim.c (1.6): Do not compile unised code (strftim() used on
some compilers only); More accuracy fix for strupr()
2003-01-16 Thursday 16:58 gerritkuehn
* strftim.c (1.5): Comment out not available function.
2003-01-16 Thursday 16:57 gerritkuehn
* locking.c (1.36): Fixed typo: HAS_INUSTD_H -> HAS_UNISTD_H.
2003-01-16 Thursday 16:56 gerritkuehn
* genmsgid.c (1.17), sq_area.c (1.27): Added inclusion of
compiler.h.
2003-01-16 Thursday 16:56 gerritkuehn
* compiler.h (1.149): Added defines for FreeBSD and Linux
(HAS_sleep, HAS_strftime). Fixed syntax error (define <fcntl.h>
-> include <fcntl.h>). Fixed pragma/warning cut&paste error.
2003-01-16 Thursday 14:53 mche
* compiler.h (1.148): undef HAS_SYS_WAIT_H for __MSVC__
2003-01-16 Thursday 13:13 stas_degteff
* compiler.h (1.147): New defines: HAS_SYS_SYSEXITS_H
HAS_SYSEXITS_H HAS_GRP_H
2003-01-16 Thursday 10:10 stas_degteff
* compiler.h (1.146): Remove obsoleted checks; add defines for some
unixes
2003-01-16 Thursday 08:07 stas_degteff
* compiler.h (1.145): Information about Microsoft Quick C
2003-01-16 Thursday 08:04 stas_degteff
* compiler.h (1.144): New declaration for header files
2003-01-16 Thursday 03:53 andr_lukyanov
* makefile.mgw (1.20): fix Mingw32 compilation
2003-01-15 Wednesday 11:20 stas_degteff
* compiler.h (1.143): fix DJGPP compilation
2003-01-15 Wednesday 11:03 stas_degteff
* msgapi.h (1.64), old_msg.h (1.3): Add comments about XMSG_SIZE
and OMSG_SIZE: this is sizes of data on disk
2003-01-15 Wednesday 09:42 stas_degteff
* compiler.h (1.142): Fix #if-#else-#endif
2003-01-15 Wednesday 09:23 stas_degteff
* makefile.bsd (1.30), makefile.inc (1.8): Update FreeBSD makefile
2003-01-15 Wednesday 09:22 stas_degteff
* compiler.h (1.141): More accuracy defines P_WAIT & SH_DENYNONE
2003-01-15 Wednesday 09:20 mche
* genmsgid.c (1.16), gnmsgid.c (1.6): patch by [Alexander Reznikov
2:4600/220]
2003-01-15 Wednesday 08:33 mche
* compiler.h (1.140): fix macro redefenition for MSVC
2003-01-15 Wednesday 08:25 mche
* compiler.h (1.139): fix macro redefenition for MSVC probably
other compilers have the same problem with compilation smapi
2003-01-15 Wednesday 06:28 stas_degteff
* api_jam.c (1.101), api_sdm.c (1.37): Replace '#include "alc.h"'
with it;s code: '#include <malloc.h>'
2003-01-15 Wednesday 05:56 stas_degteff
* BUGS (1.9), VERSION (1.5): Update documentation
2003-01-15 Wednesday 05:46 stas_degteff
* huskylib/: Makefile (1.2), compiler.h (1.3), locking.c (1.3),
locking.h (1.2): Remove unused sub directory with contents
2003-01-15 Wednesday 05:43 stas_degteff
* alc.h (1.4): Remove unused header file 'alc.h'
2003-01-15 Wednesday 05:42 stas_degteff
* 1stchar.c (1.3): include compiler.h evidently
2003-01-15 Wednesday 05:40 stas_degteff
* msgapi.c (1.37), prog.h (1.9), sq_area.c (1.26), sq_hash.c (1.7),
sq_help.c (1.9), sq_idx.c (1.10), sq_kill.c (1.7), sq_lock.c
(1.23), sq_msg.c (1.9), sq_read.c (1.10), sq_uid.c (1.8),
sq_write.c (1.12), sq_misc.c (1.8): Replace '#include "alc.h"'
with it;s code: '#include <malloc.h>'
2003-01-15 Wednesday 05:35 stas_degteff
* makefile.wcd (1.26), makefile.wco (1.23), makefile.wcw (1.28),
makefile.wcx (1.23): Fix gnmsgid.exe build for Watcom C
2003-01-15 Wednesday 05:34 stas_degteff
* makefile.sun (1.23): Remove obsoleted defines
2003-01-15 Wednesday 05:32 stas_degteff
* setfsize.c (1.16): Fix DJGPP compilation
2003-01-15 Wednesday 05:32 stas_degteff
* compiler.h (1.138): Update defines
2003-01-14 Tuesday 13:28 stas_degteff
* makefile.mvcdll (1.16): Remove obsolete macro
2003-01-14 Tuesday 09:35 stas_degteff
* compiler.h (1.137): Add information about some compilers. Thanks
to Andr Luk'yanov
2003-01-14 Tuesday 09:14 stas_degteff
* compiler.h (1.136): Use macroses from documentation of MS Visual
C/C++
2003-01-14 Tuesday 08:10 mche
* compiler.h (1.135): fix cygwin compilation
2003-01-14 Tuesday 07:56 stas_degteff
* compiler.h (1.134): Use predefined macros _M_ALPHA
2003-01-14 Tuesday 07:49 mche
* compiler.h (1.133): fix cygwin compilation
2003-01-14 Tuesday 07:28 mche
* compiler.h (1.132): fix macros defenition
2003-01-14 Tuesday 07:21 mche
* compiler.h (1.131), locking.c (1.35): do not define
__LITTLE_ENDIAN__ for Alpha processors for MSVC
2003-01-14 Tuesday 07:10 stas_degteff
* compiler.h (1.130), makefile.mvc (1.14): Try to select intel x86
or alpha for MS VC compilation
2003-01-14 Tuesday 06:48 stas_degteff
* compiler.h (1.129), fexist.c (1.30), flush.c (1.17), locking.c
(1.34), makefile.cyg (1.11), makefile.wcd (1.25), makefile.wco
(1.22), makefile.wcw (1.27), makefile.wcx (1.22), msgapi.h
(1.63), progprot.h (1.22), setfsize.c (1.15), structrw.c (1.37):
Make new code compilable on Watcom C
2003-01-14 Tuesday 06:48 mche
* compiler.h (1.128): fix MSVC compilation
2003-01-13 Monday 22:57 d_sergienko
* Makefile (1.31), compiler.h (1.127): make smapi compilable
2003-01-13 Monday 14:39 stas_degteff
* makefile.inc (1.7): Fix dependencies list. Thanks to Alexander
Reznikov 2:4600/220
2003-01-13 Monday 13:46 stas_degteff
* compiler.h (1.126): Continue update code
2003-01-13 Monday 13:31 stas_degteff
* compiler.h (1.125), prog.h (1.8): Continue update code
2003-01-13 Monday 11:36 mche
* compiler.h (1.124): fix MSVC compilation
2003-01-13 Monday 11:29 mche
* compiler.h (1.123): fix MSVC compilation
2003-01-13 Monday 10:43 stas_degteff
* alc.h (1.3), api_jam.c (1.100), api_sdm.c (1.36), compiler.h
(1.122), dr.h (1.2), ffind.c (1.22), genmsgid.c (1.15), gnmsgid.c
(1.5), locking.c (1.33), msgapi.c (1.36), msgapi.h (1.62),
progprot.h (1.21), sq_area.c (1.25), sq_hash.c (1.6), sq_help.c
(1.8), sq_idx.c (1.9), sq_kill.c (1.6), sq_lock.c (1.22),
sq_misc.c (1.7), sq_msg.c (1.8), sq_read.c (1.9), sq_uid.c (1.7),
sq_write.c (1.11), stamp.h (1.5), strftim.c (1.4), structrw.c
(1.36), typedefs.h (1.6): Use new defines for compiler-cpecific
code
2003-01-13 Monday 08:20 stas_degteff
* makefile.cyg (1.10): Allow DLL-buld for cygwin
2003-01-13 Monday 08:12 stas_degteff
* makefile.inc (1.6), makefile.bcd (1.17): Fix makefile for Borland
C/DOS
2003-01-12 Sunday 16:05 mche
* compiler.h (1.121): remove usless warnings for MSVC
2003-01-12 Sunday 15:45 mche
* compiler.h (1.120): fix output warnings for MSVC
2003-01-12 Sunday 15:11 mche
* compiler.h (1.119), smapiDll.dsp (1.5): define INTEL for MSVC in
compiler.h
2003-01-11 Saturday 17:36 mche
* compiler.h (1.118), ffind.h (1.20), flush.c (1.16), prog.h (1.7):
fix MSVC dll compilation
2003-01-11 Saturday 16:08 mche
* compiler.h (1.117): non-portable code is comented
2003-01-11 Saturday 13:13 stas_degteff
* msgapi.h (1.61), prog.h (1.6): Update code (continue)
2003-01-11 Saturday 12:55 stas_degteff
* compiler.h (1.116), fexist.c (1.29), ffind.c (1.21), ffind.h
(1.19), flush.c (1.15), gnmsgid.c (1.4), makefile.cyg (1.9),
makefile.emo (1.25), makefile.emx (1.18), msgapi.h (1.60), prog.h
(1.5), progprot.h (1.20), setfsize.c (1.14), strftim.c (1.3),
tdelay.c (1.14): Update compiler-specific code
2003-01-10 Friday 15:39 mche
* fexist.c (1.28), ffind.c (1.20), ffind.h (1.18): fix smapi
compilation with MSVC
2003-01-10 Friday 14:48 stas_degteff
* makefile.inc (1.5), makefile.wcd (1.24), makefile.wco (1.21),
makefile.wcw (1.26), makefile.wcx (1.21): Update makefiles for
Watcom C 10.0: use makefile.inc
2003-01-10 Friday 14:46 stas_degteff
* structrw.c (1.35): Fix 16bit warning
2003-01-10 Friday 14:38 stas_degteff
* ffind.c (1.19), ffind.h (1.17), flush.c (1.14), locking.c (1.32),
setfsize.c (1.13), tdelay.c (1.13): replace OS@ to __OS2__ & etc.
2003-01-10 Friday 14:13 stas_degteff
* sq_help.c (1.7): Workaroud for warning
2003-01-10 Friday 13:49 stas_degteff