forked from freemint/mintlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
4149 lines (2972 loc) · 144 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
2014-03-09 20:37 alanh
* configvars, mintlib.spec.in: Bump to 0.60.1
2014-03-09 20:29 alanh
* ChangeLog: Update ChangeLog
2014-03-04 08:38 alanh
* include/mint/ostruct.h: Add MX_MPROT
2014-03-04 08:37 alanh
* include/mint/mintbind.h: define Fpoll
2014-03-03 09:11 alanh
* unix/poll.c: Fix broken poll. Even when poll() succeeded, we'd
fall through to the older select method.
2014-02-26 10:35 alanh
* include/mint/cookie.h: Bug 0000196: definitions of some cookie
values wrong in <mint/cookie.h>
2013-12-24 12:53 alanh
* include/bits/types.h: Allow the use of 1024 file handles with
select.
Fortunately select() already falls back to Fpoll, and that now
understands 1024 file handles.
Also, luckily the stones were laid correctly that things are
checked for kernels that only support 32, so this should be all
that's required to get us to 1024 now.
2013-12-23 18:58 alanh
* include/sys/statvfs.h: remove unused defines
2013-12-23 18:52 alanh
* include/bits/statvfs.h, include/bits/MISCFILES, unix/SRCFILES,
unix/statvfs.c, include/sys/MISCFILES, include/sys/statvfs.h: Add
statvfs()
2013-12-19 09:35 alanh
* termios/tcgetattr.c: Fixed tcgetattr() to return ONLCR when
appropriate. Contributed by Vincent Riviere.
2013-12-05 16:27 alanh
* unix/readlink.c: Fix readlink.
When the buffer is not large enough to hold the filename, we need
to return what we can in the buffer that's passed in, and not
return ERANGE.
2013-11-25 14:51 alanh
* include/grp.h: Remove the __gr_passwd to gr_passwd define. It's
not done in glibc.
2013-11-24 20:56 alanh
* include/bits/byteswap.h: Update byteswap.h from GNU glibc 2.16
ports tree. Brought up by Vincent Riviere.
2013-11-19 08:42 alanh
* unix/nice.c: Add missing weak_alias for nice().
2013-11-19 08:29 alanh
* include/wchar.h: Remove #include for wctype.h
2013-10-13 19:41 alanh
* ChangeLog: Update ChangeLog
2013-10-13 19:41 alanh
* configvars, mintlib.spec.in: Bump to 0.60.0
2013-10-06 21:51 alanh
* multibyte/mbsrtowcs.c: Update from musl sources.
2013-09-23 17:44 hek
* unix/umask.c: fix umask: didn't work for successive calls
2013-05-01 19:12 alanh
* mintlib/: SRCFILES, localeconv.c, setlocale.c: Move localeconv()
to it's own source file.
2013-04-29 23:26 alanh
* mintlib/: SRCFILES, towctrans.c: Add towupper/towlower
2013-04-29 12:03 alanh
* dirent/readdir.c: Revert errorneous change
2013-04-29 11:55 alanh
* dirent/readdir.c: fix readdir. Reported by Vincent Riviere.
2013-04-29 09:27 alanh
* dirent/scandir.c, include/bits/dirent.h: Fix scandir (and dirent
capability) Found by Andreas Schwab
2013-04-29 01:38 alanh
* dirent/scandir.c: Fix scandir corruption. Reported by Vincent
Riviere.
2013-04-19 00:48 alanh
* include/MISCFILES: remove bogus ifaddrs.h
2013-04-19 00:37 alanh
* include/MISCFILES: Add missing wctype.h
2013-04-19 00:33 alanh
* posix/nanosleep.c: Add nanosleep() support for TOS. Contributed
by Eero Tamminen
2013-04-19 00:31 alanh
* include/wchar.h, mintlib/wctrans.c, include/wctype.h: More
wchar/wctype fixes.
2013-04-19 00:27 alanh
* multibyte/: mbrlen.c, mbrtowc.c, mbsnrtowcs.c, mbsrtowcs.c,
mbstowcs.c, mbtowc.c, wcrtomb.c, wcsnrtombs.c, wcsrtombs.c,
wcstombs.c: restrict -> __restrict
2013-04-19 00:23 alanh
* multibyte/: Makefile, internal.h, mbrlen.c, mbrtowc.c,
mbsnrtowcs.c, mbsrtowcs.c, mbstowcs.c, mbtowc.c, wcrtomb.c,
wcsnrtombs.c, wcsrtombs.c, wcstombs.c: Updates from musl Fix
Makefile
2013-04-16 21:10 alanh
* include/wchar.h: Fix wchar.h for FreeMiNT from recent widechar
changes.
2013-03-10 12:32 alanh
* string/wmemmove.c: Bring fix for wmemmove over from musl
2013-03-08 16:36 alanh
* include/MISCFILES: add missing wctype.h header
2013-03-07 19:04 alanh
* mintlib/wctype.c: remove ^M's
2013-03-07 19:00 alanh
* include/stdlib.h: remove wcs*() functions that shouldn't be
defined here.
2013-03-07 18:56 alanh
* LICENSES, Makefile, buildrules, include/wchar.h,
include/wctype.h, mintlib/SRCFILES, mintlib/alpha.h,
mintlib/punct.h, mintlib/wcmb.c, mintlib/wcscat.c,
mintlib/wcscmp.c, mintlib/wcscpy.c, mintlib/wcslen.c,
mintlib/wctrans.c, mintlib/wctype.c, multibyte/BINFILES,
multibyte/EXTRAFILES, multibyte/MISCFILES, multibyte/Makefile,
multibyte/SRCFILES, multibyte/btowc.c, multibyte/internal.c,
multibyte/internal.h, multibyte/mblen.c, multibyte/mbrlen.c,
multibyte/mbrtowc.c, multibyte/mbsinit.c, multibyte/mbsnrtowcs.c,
multibyte/mbsrtowcs.c, multibyte/mbstowcs.c, multibyte/mbtowc.c,
multibyte/wcrtomb.c, multibyte/wcsnrtombs.c,
multibyte/wcsrtombs.c, multibyte/wcstombs.c, multibyte/wctob.c,
multibyte/wctomb.c, string/SRCFILES, string/wcpcpy.c,
string/wcpncpy.c, string/wcscasecmp.c, string/wcscat.c,
string/wcschr.c, string/wcscmp.c, string/wcscpy.c,
string/wcscspn.c, string/wcsdup.c, string/wcslen.c,
string/wcsncasecmp.c, string/wcsncat.c, string/wcsncmp.c,
string/wcsncpy.c, string/wcsnlen.c, string/wcspbrk.c,
string/wcsrchr.c, string/wcsspn.c, string/wcsstr.c,
string/wcstok.c, string/wcswcs.c, string/wmemchr.c,
string/wmemcmp.c, string/wmemcpy.c, string/wmemmove.c,
string/wmemset.c: Add musl multibyte and wide character support
code. Contributed by Jeff Armstrong.
2013-02-23 23:56 alanh
* posix/sysconf.c: Change to 32 to match FreeMiNT, although in a
short test it came out as 19 in pure TOS, but that I guess
doesn't include currently open file descriptors.
2013-02-23 21:03 alanh
* mintlib/do_stat.c: Fix bug 191.
http://sparemint.org/bugtracker/view.php?id=191 Apply the same
logic from quickstat.c to do_stat.c Later these two files should
be merged and a #define separating the time code so that
quickstat() remains quick! but then we share fixes between the
two code paths.
2013-02-23 20:34 alanh
* posix/sysconf.c: Remove GET{PW,GR}_R_SIZE as the default: case
will handle.
2013-02-23 18:12 alanh
* include/bits/confname.h, posix/sysconf.c: Fix _SC_OPEN_MAX, and
add stubs for _SC_GETPW_R_SIZE_MAX & _SC_GETGR_R_SIZE_MAX
2013-02-22 16:21 alanh
* posix/SRCFILES: remove nl_langinfo that crept in.
2013-02-22 16:19 alanh
* posix/: SRCFILES, sched_yield.c: Add sched_yield()
implementation.
2013-02-22 11:45 alanh
* unix/rmdir.c: rmdir should not follow symlinks.
2013-02-19 10:20 alanh
* unix/nice.c: Use newer glibc nice().
2013-02-05 00:52 alanh
* mintlib/quickstat.c: Add secondary comment about non-rooted ..
directories
2013-02-05 00:51 alanh
* mintlib/quickstat.c: Add comment about requirement to fix
recursiveness. CV:
----------------------------------------------------------------------
2013-02-05 00:28 alanh
* mintlib/quickstat.c: Fix the case when we have .. as the last
entry. Follow up to bug....
http://sparemint.atariforge.net/bugtracker/view.php?id=191
2013-02-04 23:22 alanh
* mintlib/quickstat.c: Fix bug
http://sparemint.atariforge.net/bugtracker/view.php?id=191.
Where under TOS we'd stat() a directory that didn't exist and
claim it did.
2013-01-07 16:05 alanh
* mintlib/malloc.c: Fix longstanding free() crashing bug due to
NULL pointer check being missed.
2013-01-01 20:04 alanh
* include/mint/falcon.h: Remove duplicate buffoper modes.
Contributed by Miro Kropacek.
2012-12-30 22:54 alanh
* include/mint/falcon.h: Fix the SND_ cookie values (now match the
kernel). Contributed by Miro Kropacek.
2012-08-18 00:19 alanh
* unix/open.c: Fix writing to files created with mkfifo()
2012-08-05 20:51 alanh
* include/macros.h: Fix compilation for GCC 4.7.1. Contributed by
Vincent Riviere.
2012-05-17 09:26 alanh
* misc/mkstemp.c: Fix permissions on mkstemp()
2012-05-08 09:46 alanh
* configvars: Initialize LDFLAGS to avoid taking it from the
environment. Contributed by Vincent Riviere.
2012-04-30 18:05 alanh
* include/arpa/nameser.h: Additional defines Contributed by m0n0
2012-04-17 15:31 alanh
* buildrules, time/getdate.c, tz/localtime.c, tz/new_york.h: Re-do
the time/tz directories such that we can now use the
tzdata/tzcode upstream code much more easily. It also fixes
several problems, especially of that with mktime(), used in many
autogen/configure scripts.
2012-04-17 15:17 alanh
* unix/settimeofday.c: Re-do the time/tz directories such that we
can now use the tzdata/tzcode upstream code much more easily. It
also fixes several problems, especially of that with mktime(),
used in many autogen/configure scripts.
2012-04-17 15:13 alanh
* config.h, unix/adjtime.c: Re-do the time/tz directories such that
we can now use the tzdata/tzcode upstream code much more easily.
It also fixes several problems, especially of that with mktime(),
used in many autogen/configure scripts.
2012-04-17 15:06 alanh
* time/ftime.c, tz/tzselect: Re-do the time/tz directories such
that we can now use the tzdata/tzcode upstream code much more
easily. It also fixes several problems, especially of that with
mktime(), used in many autogen/configure scripts.
2012-04-17 15:02 alanh
* mintlib/: SRCFILES, ftime.c: Re-do the time/tz directories such
that we can now use the tzdata/tzcode upstream code much more
easily. It also fixes several problems, especially of that with
mktime(), used in many autogen/configure scripts.
2012-04-17 14:57 alanh
* Makefile, buildrules, include/time.h, tz/MISCFILES, tz/README,
tz/SRCFILES, tz/Theory, tz/africa, tz/antarctica, tz/asctime.c,
tz/asia, tz/australasia, tz/backward, tz/checktab.awk, tz/date.1,
tz/date.c, tz/difftime.c, tz/etcetera, tz/europe, tz/factory,
tz/ialloc.c, tz/iso3166.tab, tz/leapseconds, tz/localtime.c,
tz/new_york.h, tz/northamerica, tz/pacificnew, tz/private.h,
tz/scheck.c, tz/solar87, tz/solar88, tz/solar89, tz/southamerica,
tz/strftime.c, tz/systemv, tz/tzfile.5, tz/tzfile.h, tz/tzselect,
tz/tzselect.8, tz/tzselect.ksh, tz/usno1988, tz/usno1989,
tz/usno1989a, tz/usno1995, tz/usno1997, tz/usno1998,
tz/yearistype.sh, tz/zdump.8, tz/zdump.c, tz/zic.8, tz/zic.c,
time/EXTRAFILES, tz/zone.tab, tz/zonelist, time/Makefile,
time/SRCFILES, time/asctime.c, time/ctime.c, time/ctime_r.c,
time/difftime.c, time/getdate.c, time/gmtime.c, time/localtime.c,
time/mktime.c, time/new_york.h, time/offtime.c, time/strftime.c,
time/timegm.c, time/tz.c, time/tzfile.h, time/tzstruct.h: Re-do
the time/tz directories such that we can now use the
tzdata/tzcode upstream code much more easily. It also fixes
several problems, especially of that with mktime(), used in many
autogen/configure scripts.
2011-08-29 21:13 alanh
* configvars: Make it verbose by default.
2011-08-29 21:11 alanh
* buildrules, configvars: Allow to build mintlib silently.
Contributed by Patrice Mandin.
2011-06-02 17:04 alanh
* include/fcntl.h: export posix_fallocate()
2011-05-04 08:33 alanh
* include/setjmp.h: longjmp cannot be a #define
2011-04-24 21:35 alanh
* ChangeLog: Update ChangeLog
2011-04-24 21:35 alanh
* posix/regex.c: Fix build
2011-04-24 21:35 alanh
* string/: SRCFILES, memmem.c: Add memmem()
2011-03-20 08:27 alanh
* include/math.h: use GCC math-68881.h
2011-02-22 23:32 alanh
* include/mint/osbind.h, mintlib/setsysvar.c, unix/ioctl.c,
unix/sysinfo.c: New safe binding SuperToUser() to return from
supervisor to user mode. Patch provided by Vincent Rivi?re.
2011-02-10 08:36 alanh
* configvars, libinstall, mintlib.spec, mintlib.spec.in, rules,
include/bits/EXTRAFILES, include/bits/MISCFILES: Disable DEBUG &
PROFILE libs by default. Don't install our math-68881.h header
file. Use the one from GCC. Disable other unnecessary libraries.
Contributed by Miro Kropacek.
2011-01-14 17:06 alanh
* include/mint/dcntl.h: Fix MiNTlib's interpretation of fs types.
2011-01-12 17:39 alanh
* mintlib/setenv.c: Re-instate small portion of previous setenv
code.
2011-01-03 13:48 alanh
* include/bits/fcntl.h: Add support for F_DUPFD_CLOEXEC
2011-01-02 21:25 alanh
* include/stdlib.h, mintlib/setenv.c: Update setenv/unsetenv.
NOTE: GCC needs recompilation with this as it fixincludes
stdlib.h and unsetenv now has a return value.
2010-12-15 00:13 alanh
* include/bits/socket.h: open up sockaddr_storage
2010-12-13 09:38 alanh
* buildrules: Use -fwrapv for mktime.c & nanosleep.c
2010-12-13 09:35 alanh
* include/time.h, posix/SRCFILES, posix/nanosleep.c: Add
nanosleep() functionality using select().
2010-12-10 08:44 alanh
* unix/poll.c: Fix usage of POLLRDNORM & POLLWRNORM.
2010-12-09 21:22 alanh
* include/pty.h: remove _THROW.
2010-12-09 21:19 alanh
* include/pty.h: update pty.h from glibc.
2010-12-09 20:18 alanh
* include/pty.h: add #include <sys/ioctl.h>
2010-11-26 13:06 alanh
* unix/dup2.c: Check that the oldfd is valid, if not return EBADF.
2010-09-30 22:38 alanh
* include/mint/cookie.h: Fix value of C_NOTFOUND.
Contributed by Vicent Riviere.
2010-09-30 22:37 alanh
* include/mint/ostruct.h: Fix typo on MVM_WRITE -> NVM_WRITE
Contributed by Vicent Riviere.
2010-09-13 12:47 alanh
* sunrpc/SRCFILES: Fix build
2010-08-31 12:44 alanh
* include/regexp.h: Don't redefine regerror
2010-08-31 12:13 alanh
* sunrpc/SRCFILES: remove currently non-functional code
2010-08-31 11:42 alanh
* posix/SRCFILES: remove duplicate entry
2010-08-22 21:53 alanh
* configvars: set prefix to match cflib etc
2010-08-16 23:55 alanh
* include/net/if.h: add IF_NAMESIZE
2010-08-16 23:54 alanh
* include/bits/types.h: define useconds_t correctly
2010-08-16 23:53 alanh
* include/unistd.h, posix/usleep.c: Fix usleep()
2010-08-02 15:39 alanh
* ChangeLog: Update ChangeLog
2010-07-06 20:59 alanh
* include/mint/linea.h, mintlib/linea.c: The Line A interface is
problematic on ColdFire because all the opcodes conflict with the
MAC instructions, and do not trigger any exception. I found a
very simple solution: use the opcodes A92X instead of A00X. These
opcodes are invalid on any ColdFire and trigger the standard Line
A exception.
Contributed by Vincent Riviere
2010-06-24 15:28 alanh
* include/sys/poll.h: define nfds_t
2010-06-24 09:57 alanh
* ChangeLog: renew ChangeLog entries
2010-06-24 09:53 alanh
* configvars, mintlib.spec, mintlib.spec.in: bump to 0.59.2
2010-06-23 10:34 alanh
* mintlib/spawn.c: If UNIXMODE isn't set at all, then by default
use scriptability.
It can still be turned off omitting the 's' from UNIXMODE as
before.
2010-06-22 19:51 alanh
* mintlib/: globals.c, lib.h, main.c, spawn.c: Put back the
previous scriptability check. It's required to check the
environment in spawn().
We should release a 0.59.2.
2010-06-01 19:42 alanh
* configvars, mintlib.spec, mintlib.spec.in: Bump to 0.59.1 Enable
coldfire libs (Keith Scroggins)
2010-05-18 22:17 alanh
* include/glob.h: __GNU_SOURCE -> __USE_GNU
2010-05-18 22:15 alanh
* include/glob.h: _GNU_SOURCE -> __USE_GNU
2010-05-18 14:42 alanh
* include/sys/resource.h: add RLIM_SAVED_MAX/CUR
2010-05-06 17:24 alanh
* buildrules, checkrules: Fix the includepath generation based on
Miro's patch
2010-04-19 09:10 alanh
* stdio/vsnprintf.c: Move NULL buffer check lower
2010-04-13 13:00 alanh
* mintlib/crtinit.c: Add an enviroment variable to override default
stacksize.
Use STACKSIZE to set.
2010-04-13 12:59 alanh
* include/mint/sysvars.h: Removed unnecessary parentheses.
Contributed by Vincent Riviere.
2010-04-13 12:57 alanh
* mintlib/setlocale.c: silence warning
2010-04-09 22:47 alanh
* include/mint/sysvars.h: Fixing missing brace (contributed by
Patrice Mandin)
2010-04-06 14:21 alanh
* include/string.h, string/SRCFILES, string/strlcat.c,
string/strlcpy.c: Add strlcat()
2010-03-26 15:28 alanh
* stdio/vsnprintf.c: deal with NULL buffer separately
2010-03-26 09:13 alanh
* stdio/vsnprintf.c: deal with 0 length vsnprintf correctly.
2010-03-22 09:10 alanh
* string/SRCFILES, string/strlcpy.c, include/string.h: Add
strlcpy()
2010-01-26 09:18 alanh
* Makefile, include/EXTRAFILES, include/mint/.cvsignore,
include/mint/MISCFILES, syscall/EXTRAFILES, syscall/traps.c:
miscelleneous fixes for 0.59 release tarball
2010-01-14 23:41 alanh
* socket/Makefile, sunrpc/Makefile, tz/Makefile: revert some of the
whitespace cleanup from Mark. Only the last \ removal is needed.
2010-01-14 22:24 alanh
* socket/Makefile, sunrpc/Makefile, tz/Makefile: Fix line breaks in
makefiles in tz, sunrpc and socket.
Contributed by Mark Duckworth.
2010-01-13 17:33 alanh
* mintlib.spec.in: bump mintlib.spec.in
2010-01-13 17:08 alanh
* ChangeLog: Update ChangeLog
2010-01-13 16:58 alanh
* configvars, mintlib.spec: Bump to 0.59.0
2010-01-12 19:50 alanh
* sunrpc/Makefile: Allow cpp use from not only /usr/bin.
Contributed by Vincent Riviere.
2010-01-09 10:23 alanh
* include/bits/fcntl.h, unix/open.c: Support the following new
open() bits....
# define O_NOATIME 0x04 /* Do not set atime. */
# define O_DIRECTORY 0x10000 /* Must be a directory.
*/ # define O_NOFOLLOW 0x20000 /* Do not follow links.
*/
the kernel alreadys knows how to deal with the above on the
freemint-enhancements branch.
On 1.16 and earlier, O_DIRECTORY won't work as it always fails to
open directories and EISDIR is returned and fails. O_NOATIME will
be ignored.
As for O_NOFOLLOW, that's purely a mintlib feature and should
work fine with 1.16 and earlier.
2009-11-05 22:38 alanh
* include/sys/resource.h: typedef rlim_t __rlim_t;
2009-11-05 09:26 alanh
* buildrules: Added an explicit error message when the shell does
not support the $(<file) syntax. Contributed by Vincent Riviere.
2009-10-08 10:11 alanh
* unix/: read.c, sysinfo.c: Fix compiler warnings
2009-10-04 22:23 alanh
* string/strrchr.c: Define the rindex alias for strrchr in a more
portable way. Contributed by Vincent Riviere.
2009-08-31 17:15 alanh
* README.1st, README.stdio: Remove ^M
2009-08-27 11:24 alanh
* pwdgrp/putpwent.c: p->pw_age may be NULL, so also check for that
case to avoid a crash.
2009-06-15 19:44 alanh
* mintlib/setstack.S, startup/crt0.S: fix stack corruption.
Vincent Rivi?re <[email protected]>
2009-06-06 08:38 fna
* mintlib/main.c: Removed old CPU detection. Contributed by Vincent
Riviere.
2009-06-05 10:01 alanh
* unix/umask.c: Fix umask, it never fails.
2009-06-04 10:18 fna
* mintlib/SRCFILES, mintlib/checkcpu.S, mintlib/getcookie.S,
mintlib/getcookie.c, mintlib/getsysvar.S, mintlib/ident.c,
mintlib/setsysvar.c, mintlib/sysvar.c, startup/crt0.S: Fixed
68020+ detection. Added ColdFire detection. Rewritten
getcookie.c in assembly language. Split sysvar.c into
getsysvar.S and setsysvar.c Fixed MiNTLib Ident string for
ColdFire. Contributed by Vincent Riviere.
2009-05-29 20:23 fna
* buildrules, configvars, mintlib/setjmp.S, startup/Makefile,
startup/crt0.S, unix/vfork.S: Removed artifacts from the ancient
-mbaserel GCC option and WITH_SOFT_FP. Contributed by Vincent
Riviere.
2009-05-29 20:19 fna
* libinstall: Changed the ColdFire V4e compilation option from
-mcfv4e to -mcpu=5475 and the multilib directory from mcfv4e to
m5475 in order to respect GCC standards. Contributed by Vincent
Riviere.
2009-05-29 14:08 fna
* libv4e/: Makefile, README: Changed the ColdFire V4e compilation
option from -mcfv4e to -mcpu=5475 and the multilib directory from
mcfv4e to m5475 in order to respect GCC standards. Contributed by
Vincent Riviere.
2009-05-29 06:21 fna
* mintlib/libc_exit.S, mintlib/setjmp.S, string/bcopy.S,
string/bzero.S, unix/vfork.S: Added ColdFire support to most
assembler files (except FPU). Contributed by Vincent Riviere.
2009-05-27 23:27 fna
* syscall/: main.c, traps.c, traps.h: Output different trap numbers
in different files (e.g trap1.h, trap13.h and trap14.h).
2009-05-27 22:46 fna
* mintlib/: _normdf.S, frexp.S, ldexp.S, modf.S: Patched the
floating-point assembly functions frexp(), ldexp() and modf() for
ColdFire. Contributed by Vincent Riviere.
2009-05-25 01:03 fna
* syscall/: generate.c, pars.y, syscalldefs.h, syscalls.master:
Added return type to syscall parser and binding generator.
2009-05-22 23:06 fna
* include/mint/mintbind.h: Corrected binding.
2009-05-22 22:36 fna
* syscall/: generate.c, main.c, syscalls.master, traps.c, traps.h:
Updated syscall generator, generate now macros like in
osbind/mintbind and compile together with the mintlib. Fgetdta()
produce now a warning as the return is casted to a "long" instead
"_DTA *". I don't think it's worth the effort to add such a
feature to the generator, I think it's better to fix the 5 places
where Fgetdta() is used.
2009-05-22 22:31 fna
* argp/.cvsignore: Added missing .cvsignore file.
2009-05-22 19:48 fna
* include/compiler.h, include/features.h.in,
include/mint/mintbind.h, include/mint/osbind.h, syscall/traps.c:
Fixed the syscall generator for GCC >= 3 by using
__CLOBBER_RETURN. Moved the macros __GNUC_PREREQ and AND_MEMORY
to compiler.h. Contributed by Vincent Riviere.
2009-05-22 19:32 fna
* mintlib/: SRCFILES, osbind.S: Removed the obsolete file
mintlib/osbind.S. Contributed by Vincent Riviere.
2009-05-22 19:29 fna
* syscall/traps.c: Correctly output the trap number.
2009-05-22 19:29 fna
* Makefile: Corrected linker.h to feature.h (linker.h is double
referenced).
2009-05-22 19:28 fna
* syscall/Makefile: Cross compile the generator as re-entered
target.
2009-05-22 10:11 fna
* include/.cvsignore, include/Makefile, syscall/.cvsignore,
syscall/Makefile: Cleanup.
2009-05-18 20:53 alanh
* ChangeLog, include/compiler.h, include/macros.h,
include/mint/linea.h, mintlib/linea.c: 2009-05-18 Monday 20:51
Vincent Riviere <[email protected]>
* mintlib/include/compiler.h, mintlib/include/macros.h,
mintlib/include/mint/linea.h, mintlib/mintlib/linea.c
Added ColdFire support for all the C files.
2009-05-18 19:32 alanh
* ChangeLog, include/mint/mintbind.h, include/mint/osbind.h,
mintlib/setjmp.S, syscall/traps.c: 2009-05-18 Monday 18:44
Vincent Riviere <[email protected]> *
mint/mintbind.h, mint/osbind.h, mintlib/setjmp.S, syscall/traps.c
Replaced "addqw" to address register by "addql".
This instruction has the same behaviour, size and speed,
and is ColdFire compatible.
2009-05-15 09:39 alanh
* ChangeLog, include/macros.h, include/bits/byteswap.h,
include/bits/math-68881.h, include/mint/falcon.h,
include/mint/linea.h, include/mint/mintbind.h,
include/mint/osbind.h, mintlib/atomicity-68020.h,
mintlib/libc-symbols.h, mintlib/linea.c, mintlib/machine-gmon.h,
string/strrchr.c, syscall/traps.c: 2009-05-14 Thursday 23:37
Vincent Riviere <[email protected]>
* include/macros.h, include/bits/byteswap.h,
include/bits/math-68881.h,
include/mint/falcon.h, include/mint/linea.h,
include/mint/mintbind.h,
include/mint/osbind.h, mintlib/atomicity-68020.h,
mintlib/libc-symbols.h
mintlib/linea.c, mintlib/machine-gmon.h,
string/strrchr.c,
syscall/traps.c
Cleanup inline assembly syntax.
Removed semicolumns, using "\n\t" instead.
Split strings spanning on multiple lines into multiple
strings.
Replaced "asm" and "__asm" keywords by "__asm__".
2009-05-07 10:05 alanh
* ChangeLog, Makefile, configvars, libinstall, libv4e/.cvsignore,
libv4e/BINFILES, libv4e/EXTRAFILES, libv4e/MISCFILES,
libv4e/Makefile, libv4e/README, libv4e/SRCFILES: 2009-05-01
Friday 09:18 Vincent Riviere <[email protected]>
* Makefile, configvars, libinstall, libv4e/.cvsignore,
libv4e/BINFILES,
libv4e/EXTRAFILES, libv4e/MISCFILES, libv4e/Makefile,
libv4e/README,
libv4e/SRCFILES
Added build support for ColdFire V4e libraries.
The new variant is called libv4e, and is built with the
-mcfv4e option.
Since that option is only available in GCC 4.x and the
sources are not
yet compilable for ColdFire, the build of that library is
currently
disabled by default.
2009-05-04 10:55 alanh
* include/limits.h: update limits.h for latest GNU changes
2009-04-28 16:45 alanh
* include/MISCFILES: We shouldn't install pml's math.h. Leave it up
to pml installation or fdlibm to install their math.h.
2009-03-12 07:23 alanh
* stdio/fxprintf.c, argp/argp-help.c: fix some gcc 2.95.3 problems
2009-03-06 00:25 alanh
* stdio/: Makefile, obstream.c, test-obstream.c: fix obstream
support (Vincent Rivièr)
2009-03-01 19:55 alanh
* unix/lseek.c: EBADARG fix
2009-03-01 08:05 alanh
* include/time.h: disable timegm for now
2009-03-01 08:05 alanh
* stdio/newstream.c: initialize __flags
2009-02-28 19:36 alanh
* unix/open.c: check for posix requirement of trailing slash when
creating files
2009-02-28 19:35 alanh
* unix/open.c: Ensure we don't modify the umask and put it back
after retrieving.
2009-02-28 18:59 alanh
* string/Makefile: fix "string"
2009-02-28 18:56 alanh
* include/bits/stat.h: fix definition for S_IFMEM
2009-02-28 17:25 alanh
* unix/flock.c: don't allow passing of LOCK_EX & LOCK_SH
simultaneously, but flock is still broken.
2009-02-28 17:24 alanh
* unix/poll.c: use -1UL
2009-02-28 17:23 alanh
* misc/efgcvt_r.c: fix some compiler warnings
2009-02-28 17:22 alanh
* stdio/obstream.c: add obstream initialisation
2009-02-28 17:22 alanh
* include/stdio.h, stdio/internals.c: Add functionality to detect
when we are putting or getting in stdio.
2009-02-27 10:46 alanh
* argp/argp-parse.c: use __sleep
2009-02-27 10:32 alanh
* posix/sleep.c: fix sleep -> __sleep (Vincent Rivière)
2009-02-19 01:27 alanh
* dirent/SRCFILES, dirent/fdopendir.c, dirent/dirfd.c,
include/unistd.h, include/mint/mintbind.h, include/sys/dirent.h,
syscall/syscalls.master, unix/SRCFILES, unix/fchdir.c: Add
fdopendir, fchdir and dirfd support (requires
freemint-enhancements kernel)
2009-02-05 19:13 alanh
* argp/argp-parse.c: use sleep
2009-01-28 22:10 alanh
* include/signal.h: renumber SV_ for sigvec
2009-01-28 22:08 alanh
* include/bits/sigaction.h, unix/sigvec.c: expose SA_RESETHAND
2009-01-28 16:52 alanh
* argp/: test-argp.c, test-argp1.c, test-argp2.c, test-bug-argp1.c:
add test files for argp
2009-01-28 16:52 alanh
* stdio/: SRCFILES, fxprintf.c: add fxprintf for argp
2009-01-28 15:13 alanh
* Makefile, buildrules, argp/BINFILES, argp/EXTRAFILES,
argp/MISCFILES, argp/Makefile, argp/SRCFILES, argp/argp-ba.c,
argp/argp-eexst.c, argp/argp-fmtstream.c, argp/argp-fmtstream.h,
argp/argp-fs-xinl.c, argp/argp-help.c, argp/argp-namefrob.h,
argp/argp-parse.c, argp/argp-pv.c, argp/argp-pvh.c,