summaryrefslogtreecommitdiffstats
path: root/lib/ChangeLog
blob: ddc8919c517dd6de4da52d7fe7313f57065f3d13 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
2001-12-23  Bruno Haible  <bruno@clisp.org>

	* xsetenv.h: New file.
	* xsetenv.c: New file.
	* Makefile.am (libgettextlib_la_SOURCES): Add them.
	* classpath.c (set_classpath): Use xsetenv instead of setenv.
	(reset_classpath): Likewise.
	* javacomp.c (compile_java_class): Likewise.
	* javaexec.c (execute_java_class): Likewise.

2001-12-23  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (libgettextlib_la_SOURCES): Add the contents of
	libgettextlib_la_HEADER, except liballoca.h.
	(LIBADD_SOURCE): Add the contents of LIBADD_HEADER, plus liballoca.h.
	(UNUSED_SOURCE): Add the contents of UNUSED_HEADER.
	(libgettextlib_la_HEADER, LIBADD_HEADER, UNUSED_HEADER): Remove
	variables.
	(noinst_HEADERS): Update.

2001-12-21  Bruno Haible  <bruno@clisp.org>

	* localcharset.c (ISSLASH): Provide definition for DOS-like systems.
	* basename.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.

2001-12-22  Bruno Haible  <bruno@clisp.org>

	* binary-io.h: New file, extracted from system.h.
	* exit.h: New file, extracted from system.h.
	* liballoca.h: New file, extracted from system.h.
	* pathname.h: New file, extracted from system.h.
	* stpcpy.h: New file, extracted from system.h.
	* stpncpy.h: New file, extracted from system.h.
	* strcase.h: New file, extracted from system.h.
	* xgetcwd.h: New file, extracted from system.h.
	* system.h: Remove file.
	* Makefile.am (libgettextlib_la_SOURCES): Remove xgetcwd.c.
	(libgettextlib_la_HEADER): Add binary-io.h, exit.h, liballoca.h,
	pathname.h. Remove system.h.
	(LIBADD_HEADER): Add stpcpy.h, stpncpy.h, strcase.h.
	(UNUSED_SOURCE): Add xgetcwd.c.
	(UNUSED_HEADER): Add xgetcwd.h.
	* argmatch.c: Include exit.h instead of <stdlib.h>.
	(EXIT_FAILURE): Remove fallback definition.
	* concatpath.c: Include pathname.h, <string.h>, stpcpy.h instead of
	system.h.
	* copy-file.c: Include <unistd.h>, binary-io.h, exit.h instead of
	system.h.
	(O_BINARY): Remove fallback definition.
	* execute.c: Include exit.h.
	(EXIT_FAILURE): Remove fallback definition.
	* findprog.c: Include pathname.h instead of system.h.
	* javacomp.c: Include liballoca.h. Remove alloca() declaration stuff.
	* javaexec.c: Likewise.
	* setenv.c: Likewise.
	* linebreak.h: Include <stddef.h> instead of <stdlib.h>.
	* linebreak.c: Include <stdlib.h> instead of <stddef.h>.
	* pipe-bidi.c: Include exit.h.
	(EXIT_FAILURE): Remove fallback definition.
	* pipe-in.c: Include exit.h.
	(EXIT_FAILURE): Remove fallback definition.
	* pipe-out.c: Include exit.h.
	(EXIT_FAILURE): Remove fallback definition.
	* wait-process.c: Include exit.h.
	(EXIT_FAILURE): Remove fallback definition.
	* xerror.c: Include exit.h.
	(EXIT_FAILURE): Remove fallback definition.
	* xmalloc.c: Include exit.h.
	(EXIT_FAILURE): Remove fallback definition.

2001-12-21  Bruno Haible  <bruno@clisp.org>

	* minmax.h: New file, extracted from system.h.
	* system.h (MIN, MAX): Remove macros.
	* Makefile.am (libgettextlib_la_HEADER): Add minmax.h.

2001-12-21  Bruno Haible  <bruno@clisp.org>

	* gettext.h: Moved here from ../intl/libgettext.h.
	* Makefile.am (noinst_HEADERS): Add it.
	(gettextsrcdir, gettextsrc_DATA): New variables.
	* copy-file.c: Include gettext.h instead of libgettext.h.
	* execute.c: Likewise.
	* javacomp.c: Likewise.
	* javaexec.c: Likewise.
	* pipe-bidi.c: Likewise.
	* pipe-in.c: Likewise.
	* pipe-out.c: Likewise.
	* wait-process.c: Likewise.
	* xerror.c: Likewise.
	* xmalloc.c: Likewise.

2001-12-20  Bruno Haible  <bruno@clisp.org>

	* execute.c (nonintr_open): Omit prototype. On some platforms mode_t
	promotes to int, not mode_t.
	* pipe-in.c (nonintr_open): Likewise.
	* pipe-out.c (nonintr_open): Likewise.

2001-12-20  Bruno Haible  <bruno@clisp.org>

	* setenv.c (__add_to_environ): Don't call realloc(NULL,...), use
	malloc instead. For SunOS4.

2001-12-17  Bruno Haible  <bruno@clisp.org>

	* pfnmatch.h: New file, from fileutils-4.1/lib/fnmatch.h with
	modifications.
	* pfnmatch.c: New file, from fileutils-4.1/lib/fnmatch.c with
	modifications.
	* Makefile.am (LIBADD_SOURCE): Add pfnmatch.c.
	(LIBADD_HEADER): Add pfnmatch.h.
	(DISTCLEANFILES): New variable.

2001-12-18  Bruno Haible  <bruno@clisp.org>

	* getline.h: Include <stddef.h>, for size_t.

2001-12-15  Bruno Haible  <bruno@clisp.org>

	* localcharset.c: Add OS/2 support.

2001-12-11  Bruno Haible  <bruno@clisp.org>

	* argmatch.c: Include <stdlib.h>, to declare exit().
	* copy-file.c: Include <sys/stat.h>, for struct stat.
	* gcd.c: Include <stdlib.h>, to declare abort().
	* setenv.c: Declare alloca.
	(compar_fn_t): New typedef.
	(KNOWN_VALUE, STORE_VALUE): Use it.

2001-12-08  Bruno Haible  <bruno@clisp.org>

	* pipe-in.c (create_pipe_in): Don't redirect stdin if prog_stdin
	is NULL.
	* pipe-out.c (create_pipe_out): Don't redirect stdout if prog_stdout
	is NULL.

2001-11-24  Bruno Haible  <bruno@clisp.org>

	* javaexec.h (execute_java_class): New argument 'quiet'.
	* javaexec.c (execute_java_class): Likewise.

2001-11-17  Bruno Haible  <haible@clisp.cons.org>

	* hash.c (lookup_2): Remove function, identical to 'lookup'.
	(init_hash): Remove test for NULL that can never succeed.
	(insert_entry_2): Resize at 75%, not 90%. Call 'lookup' instead of
	'lookup_2'.
	(compute_hashval): Shift by 9 bits, not by 4 bits. This drastically
	improves the quality of the hash function, especially for short
	strings.

2001-11-11  Bruno Haible  <haible@clisp.cons.org>

	* javaexec.sh.in: Use HAVE_JAVA instead of HAVE_JAVA_JVM.
	The problem seen with automake-1.4 is gone with automake-1.5.

2001-11-10  Bruno Haible  <haible@clisp.cons.org>

	* argmatch.h (PARAMS): Also test for __SUNPRO_C, because 64-bit Solaris
	cc needs prototypes although it defines __STDC__ to 0 by default.
	Also test for __cplusplus and __PROTOTYPES, just for consistency with
	libgnuintl.h.
	* c-ctype.h (PARAMS): Likewise.
	* gcd.h (PARAMS): Likewise.
	* getline.h (PARAMS): Likewise.
	* hash.h (PARAMS): Likewise.
	* linebreak.h (PARAMS): Likewise.
	* mbswidth.h (PARAMS): Likewise.
	* mkdtemp.h (PARAMS): Likewise.
	* setenv.h (PARAMS): Likewise.
	* strpbrk.h (PARAMS): Likewise.
	* strstr.h (PARAMS): Likewise.
	* system.h (PARAMS): Likewise.
	* tmpdir.h (PARAMS): Likewise.

2001-11-05  Bruno Haible  <haible@clisp.cons.org>

	* tmpdir.c: Include string.h.

2001-11-01  Bruno Haible  <haible@clisp.cons.org>

	* execute.c (execute): If the subprocess fails, exit with return code
	127, not -1 (which becomes 255).
	* pipe-bidi.c (create_pipe_bidi): Likewise.
	* pipe-in.c (create_pipe_in): Likewise.
	* pipe-out.c (create_pipe_out): Likewise.

2001-10-31  Bruno Haible  <haible@clisp.cons.org>

	* Makefile.am (execute.lo, javacomp.lo, javaexec.lo, pipe-bidi.lo,
	pipe-in.lo, pipe-out.lo, progname.lo, wait-process.lo, xerror.lo):
	Depend on @STDBOOL_H@.
	* execute.c (EXIT_FAILURE): Provide a fallback definition, for SunOS 4.
	* pipe-bidi.c (EXIT_FAILURE): Likewise.
	* pipe-in.c (EXIT_FAILURE): Likewise.
	* pipe-out.c (EXIT_FAILURE): Likewise.
	* wait-process.c (EXIT_FAILURE): Likewise.
	* xerror.c (EXIT_FAILURE): Likewise.
	(xasprintf): Use VA_START instead of va_start.
	* javacomp.c: Include alloca() declaration stuff.
	* javaexec.c: Likewise.

2001-10-28  Bruno Haible  <haible@clisp.cons.org>

	* progname.c (set_program_name) [BeOS]: Make program_name absolute
	before removing "lt-".

2001-10-21  Bruno Haible  <haible@clisp.cons.org>

	Create a libgettextlib shared library.
	* Makefile.am (noinst_LIBRARIES): Remove variable.
	(lib_LTLIBRARIES): New variable.
	(libgettextlib_la_SOURCES): Renamed from libnlsut_a_SOURCES.
	(libgettextlib_la_HEADER): Renamed from libnlsut_a_HEADER.
	(libgettextlib_la_LIBADD): Renamed from libnlsut_a_LIBADD.
	(libgettextlib_la_LDFLAGS): New variable.

2001-10-21  Bruno Haible  <haible@clisp.cons.org>

	* mkdtemp.c: Include <inttypes.h> if it exists. Needed on platforms
	which have <inttypes.h> but not <stdint.h>, like BeOS.

2001-10-21  Bruno Haible  <haible@clisp.cons.org>

	* stdbool.h.in: Avoid syntax error on BeOS if <sys/socket.h> has
	already been included.

2001-10-21  Bruno Haible  <haible@clisp.cons.org>

	* basename.c: #undef basename before defining it. This avoids a
	warning on non-glibc platforms.

2001-10-09  Bruno Haible  <haible@clisp.cons.org>

	* localcharset.c (getc): Define as getc_unlocked if available.

2001-10-10  Bruno Haible  <haible@clisp.cons.org>

	* wait-process.h (wait_subprocess): New argument 'exit_on_error'.
	* wait-process.c (wait_subprocess): Implement 'exit_on_error' handling.
	Treat exitcode 127 like a failure to create the subprocess.
	* execute.h (execute): New argument 'exit_on_error'.
	* execute.c (execute): Implement 'exit_on_error' handling.
	* pipe.h (create_pipe_out, create_pipe_in, create_pipe_bidi): New
	arguments 'null_stderr' and 'exit_on_error'.
	* pipe-in.c (create_pipe_in): Implement 'null_stderr' and
	'exit_on_error' handling.
	* pipe-out.c (create_pipe_out): Likewise.
	* pipe-bidi.c (create_pipe_bidi): Likewise.
	* javacomp.c: Include pipe.h, wait-process.h, safe-read.h.
	(compile_java_class): Update for changed execute(). When testing for
	gcj, ignore gcj version 2.xx, require at least gcj 3.0.
	* javaexec.c (execute_java_class): Update for changed execute().
	* Makefile.am (libnlsut_a_SOURCES): Add safe-read.c.
	(libnlsut_a_HEADER): Add safe-read.h.
	(UNUSED_SOURCE): Remove safe-read.c.
	(UNUSED_HEADER): Remove safe-read.h.

2001-09-25  Bruno Haible  <haible@clisp.cons.org>

	Upgrade to automake-1.5.
	* Makefile.am (AUTOMAKE_OPTIONS): Add 'no-dependencies'.

2001-10-20  Bruno Haible  <haible@clisp.cons.org>

	Assume strchr() exists.
	* system.h (strchr): Remove fallback definition.

2001-09-17  Bruno Haible  <haible@clisp.cons.org>

	* backupfile.h: New file, from fileutils-4.1 with modifications.
	* backupfile.c: New file, from fileutils-4.1 with modifications.
	* addext.c: New file, from fileutils-4.1 with modifications.
	* Makefile.am (libnlsut_a_SOURCES): Add backupfile.c, addext.c.
	(libnlsut_a_HEADER): Add backupfile.h.

2001-09-17  Bruno Haible  <haible@clisp.cons.org>

	* argmatch.h: New file, from fileutils-4.1 with simplifications.
	* argmatch.c: New file, from fileutils-4.1 with simplifications.
	* Makefile.am (libnlsut_a_SOURCES): Add argmatch.c.
	(libnlsut_a_HEADER): Add argmatch.h.

2001-09-17  Bruno Haible  <haible@clisp.cons.org>

	* copy-file.h: New file.
	* copy-file.c: New file.
	* Makefile.am (libnlsut_a_SOURCES): Add copy-file.c.
	(libnlsut_a_HEADER): Add copy-file.h.

2001-09-17  Bruno Haible  <haible@clisp.cons.org>

	* basename.h: New file.
	* basename.c: Include it. Don't compile the function if already
	present in the GNU C library.
	* Makefile.am (libnlsut_a_HEADER): Add basename.h.
	* system.h (gnu_basename, basename): Remove.

2001-09-09  Bruno Haible  <haible@clisp.cons.org>

	* xmalloc.h: New file.
	* strstr.h: New file.
	* system.h (xmalloc, xrealloc, xstrdup): Remove declarations, now in
	xmalloc.h.
	(parse_printf_format, asprintf): Remove declarations.
	(strstr): Remove declaration, now in strstr.h.
	* xmalloc.c: Include xmalloc.h. Modernize. Assume <stdlib.h> exists.
	* xstrdup.c: Include xmalloc.h. Modernize. Assume <string.h> exists.
	* concatpath.c: Include xmalloc.h.
	* findprog.c: Likewise.
	* fstrcmp.c: Include xmalloc.h instead of system.h.
	* javacomp.c: Likewise.
	* javaexec.c: Likewise.
	* sh-quote.c: Likewise.
	* hash.c: Include xmalloc.h. Don't declare xmalloc, xcalloc.
	* xgetcwd.c: Include stdlib.h and xmalloc.h. Don't declare xmalloc,
	xstrdup, free.
	* Makefile.am (libnlsut_a_HEADER): Add xmalloc.h.
	(LIBADD_HEADER): Add strstr.h.

	* Makefile.am (INCLUDES): Add -I$(top_srcdir)/intl. Needed because
	some files include "libgettext.h", in the case $builddir != $srcdir.

2001-09-25  Bruno Haible  <haible@clisp.cons.org>

	* javacomp.c (compile_java_class): Recognize javac exit code 2.

2001-09-16  Bruno Haible  <haible@clisp.cons.org>

	* Makefile.am (libnlsut_a_SOURCES): Remove safe-read.c.
	(libnlsut_a_HEADER, LIBADD_SOURCE, LIBADD_HEADER, UNUSED_SOURCE,
	UNUSED_HEADER): New variables.
	(noinst_HEADERS, EXTRA_DIST): Use them.

2001-09-08  Bruno Haible  <haible@clisp.cons.org>

	* pipe-bidi.c (nonintr_close): Add function prototypes.
	* pipe-in.c (nonintr_close, nonintr_open): Likewise.
	* pipe-out.c (nonintr_close, nonintr_open): Likewise.

2001-09-08  Bruno Haible  <haible@clisp.cons.org>

	* findprog.c: Include specification header before all other headers.
	* fstrcmp.c: Likewise.
	* full-write.c: Likewise.
	* hash.c: Likewise.
	* linebreak.c: Likewise.
	* mbswidth.c: Likewise.
	* progname.c: Likewise.
	* safe-read.c: Likewise.
	* wait-process.c: Likewise.
	* xerror.c: Likewise.
	* getline.c: Include getline.h.
	* mbswidth.h: Include <stddef.h>, for size_t.
	* wait-process.h: Include <unistd,h> and <sys/types.h>, for pid_t.

2001-09-08  Bruno Haible  <haible@clisp.cons.org>

	* javacomp.sh.in: New file.
	* javaexec.sh.in: New file.

2001-09-06  Bruno Haible  <haible@clisp.cons.org>

	* javacomp.h: New file.
	* javacomp.c: New file.
	* javaexec.h: New file.
	* javaexec.c: New file.
	* classpath.c: New file.
	* Makefile.am (EXTRA_DIST): Add classpath.c.
	(libnlsut_a_SOURCES): Add javacomp.c, javaexec.c.
	(noinst_HEADERS): Add javacomp.h, javaexec.h.

2001-09-06  Bruno Haible  <haible@clisp.cons.org>

	* sh-quote.h: New file.
	* sh-quote.c: New file.
	* Makefile.am (libnlsut_a_SOURCES): Add sh-quote.c.
	(noinst_HEADERS): Add sh-quote.h.

2001-09-06  Bruno Haible  <haible@clisp.cons.org>

	* strpbrk.h: New file.
	* strpbrk.c: New file, from glibc-2.2.4.
	* Makefile.am (EXTRA_DIST): Add strpbrk.c.
	(noinst_HEADERS): Add strpbrk.h.

2001-09-06  Bruno Haible  <haible@clisp.cons.org>

	* setenv.h: New file.
	* setenv.c: New file, from glibc-2.2.4.
	* Makefile.am (EXTRA_DIST): Add setenv.c.
	(noinst_HEADERS): Add setenv.h.

2001-09-02  Bruno Haible  <haible@clisp.cons.org>

	* mkdtemp.h: New file.
	* mkdtemp.c: New file, mostly taken from glibc-2.2.4.
	* tmpdir.h: New file.
	* tmpdir.c: New file, mostly taken from glibc-2.2.4.
	* Makefile.am (EXTRA_DIST): Add mkdtemp.c.
	(libnlsut_a_SOURCES): Add tmpdir.c.
	(noinst_HEADERS): Add mkdtemp.h, tmpdir.h.

2001-09-02  Bruno Haible  <haible@clisp.cons.org>

	* execute.h: New file.
	* execute.c: New file.
	* Makefile.am (libnlsut_a_SOURCES): Add execute.c.
	(noinst_HEADERS): Add execute.h.

2001-09-02  Bruno Haible  <haible@clisp.cons.org>

	* gcd.h: New file.
	* gcd.c: New file.
	* Makefile.am (libnlsut_a_SOURCES): Add gcd.c.
	(noinst_HEADERS): Add gcd.h.

2001-09-02  Bruno Haible  <haible@clisp.cons.org>

	* pipe.h: Ensure pid_t gets declared.
	* pipe-bidi.c: Include pipe.h.
	* pipe-in.c: Likewise.
	* pipe-out.c: Likewise.

2001-08-26  Bruno Haible  <haible@clisp.cons.org>

	* printf-parse.h: Remove file.
	* printf.h: Remove file.
	* printf-prs.c: Remove file.
	* Makefile.am (EXTRA_DIST): Remove printf-prs.c.
	(noinst_HEADERS): Remove printf-parse.h, printf.h.
	* system.h (MIN): New macro.

2001-07-28  Bruno Haible  <haible@clisp.cons.org>

	* printf-parse.h: Don't include <ctype.h>.
	(ISDIGIT): New macro.
	(read_int, parse_one_spec): Use ISDIGIT instead of isdigit.

2001-08-05  Bruno Haible  <haible@clisp.cons.org>

	* stdbool.h.in (_Bool): Define differently in C++ mode.

2001-07-23  Bruno Haible  <haible@clisp.cons.org>

	* system.h: Assume <limits.h> exists.
	* fstrcmp.c: Likewise.

2001-07-01  Bruno Haible  <haible@clisp.cons.org>

	* utf8-ucs4.h: New file, extracted from linebreak.c.
	* utf16-ucs4.h: New file, extracted from linebreak.c.
	* linebreak.c (u8_mbtouc_aux, u8_mbtouc): Moved to utf8-ucs4.h.
	(u16_mbtouc_aux, u16_mbtouc): Moved to utf16-ucs4.h.
	* Makefile.am (noinst_HEADERS): Add utf8-ucs4.h, utf16-ucs4.h.

2001-06-30  Bruno Haible  <haible@clisp.cons.org>

	* stdbool.h.in: New file.
	* Makefile.am (EXTRA_DIST): Add stdbool.h.in.
	(all-local): Depend on @STDBOOL_H@.
	(stdbool.h): New rule.
	(MOSTLYCLEANFILES): New variable.
	* progname.h: Include stdbool.h.
	(error_with_progname): Change type to bool.
	* progname.c (error_with_progname): Likewise.

2001-06-10  Bruno Haible  <haible@clisp.cons.org>

	* findprog.h: New file.
	* findprog.c: New file.
	* full-write.h: New file.
	* full-write.c: New file.
	* pipe.h: New file.
	* pipe-bidi.c: New file.
	* pipe-in.c: New file.
	* pipe-out.c: New file.
	* safe-read.h: New file.
	* safe-read.c: New file.
	* wait-process.h: New file.
	* wait-process.c: New file.
	* Makefile.am (libnlsut_a_SOURCES): Add findprog.c, full-write.c,
	pipe-bidi.c, pipe-in.c, pipe-out.c, safe-read.c, wait-process.c.
	(noinst_HEADERS): Add findprog.h, full-write.h, pipe.h, safe-read.h,
	wait-process.h.

2001-05-15  Bruno Haible  <haible@clisp.cons.org>

	* progname.h (set_program_name): New declaration.
	* progname.c: Include <string.h>.
	(set_program_name): New function.

2001-05-02  Bruno Haible  <haible@clisp.cons.org>

	* xerror.h: New file.
	* xerror.c: New file.
	* Makefile.am (libnlsut_a_SOURCES): Add xerror.c.
	(noinst_HEADERS): Add xerror.h.

2001-05-01  Bruno Haible  <haible@clisp.cons.org>

	Prefix most error messages with the program name, except those
	starting with "filename:lineno:".
	* progname.h: New file.
	* progname.c: New file.
	* Makefile.am (libnlsut_a_SOURCES): Add progname.c.
	(noinst_HEADERS): Add progname.h.

2001-05-01  Bruno Haible  <haible@clisp.cons.org>

	* vasprintf.c (int_vasprintf): Upon allocation failure, return -1,
	not 0, to be consistent with glibc documentation.

2001-09-13  Bruno Haible  <haible@clisp.cons.org>

	* gettext-0.10.40 released.

2001-09-13  Bruno Haible  <haible@clisp.cons.org>

	* alloca.c (alloca): Replace 'REGISTER' with 'register'.
	Reported by Len Makin <len@hpc.csiro.au>.

2001-07-24  Bruno Haible  <haible@clisp.cons.org>

	* gettext-0.10.39 released.

2001-06-24  Bruno Haible  <haible@clisp.cons.org>

	* config.charset: Change canonical name of BIG5HKSCS to BIG5-HKSCS.
	Change canonical name of SJIS to SHIFT_JIS.

2001-06-25  Bruno Haible  <haible@clisp.cons.org>

	* mbswidth.c (mbsinit): Define to 1 if not defined. For SCO 3.2v5.0.2.

2001-04-30  Bruno Haible  <haible@clisp.cons.org>

	Silence "gcc -Wall -Wwrite-strings" warnings.
	* localcharset.c (charset_aliases): Change type to 'const char *'.
	(get_charset_aliases): Change type of 'cp' to 'const char *'.

2001-05-23  Bruno Haible  <haible@clisp.cons.org>

	* gettext-0.10.38 released.

2001-05-23  Bruno Haible  <haible@clisp.cons.org>

	* linebreak.c (mbs_possible_linebreaks): Avoid broken EUC-KR
	conversion in glibc-2.1.
	(mbs_width_linebreaks): Likewise.

2001-05-02  Bruno Haible  <haible@clisp.cons.org>

	* linebreak.c (iconv_string_keeping_offsets): Work around a glibc-2.1
	bug.

2001-04-19  Bruno Haible  <haible@clisp.cons.org>

	* gettext-0.10.37 released.

2001-04-04  Bruno Haible  <haible@clisp.cons.org>

	* mbswidth.h: New file, from textutils-2.0.13 with modifications.
	* mbswidth.c: Likewise.
	* Makefile.am (noinst_HEADERS): Add mbswidth.h.
	(libnlsut_a_SOURCES): Add mbswidth.c.

2001-04-04  Bruno Haible  <haible@clisp.cons.org>

	* linebreak.h (UC_BREAK_UNDEFINED): New enum value.
	(u8_width_linebreaks, u16_width_linebreaks, u32_width_linebreaks,
	mbs_width_linebreaks): Add overrides argument.
	* linebreak.c (u8_width_linebreaks, u16_width_linebreaks,
	u32_width_linebreaks, mbs_width_linebreaks): Add overrides argument.

2001-03-29  Bruno Haible  <haible@clisp.cons.org>

	* gettext-0.10.36 released.

2001-03-21  Bruno Haible  <haible@clisp.cons.org>

	* linebreak.c: Include string.h, needed for memset() declaration.

2001-03-11  Bruno Haible  <haible@clisp.cons.org>

	* xmalloc.c (fixup_null_alloc): Unify messages.

2001-03-10  Bruno Haible  <haible@clisp.cons.org>

	* linebreak.c (iconv_string_length): Don't call
	iconv(cd,NULL,NULL,NULL,NULL) on glibc-2.1; it crashes.

	* localcharset.c (locale_charset): Allow wildcard syntax. Resolve
	alias also if codeset is empty.
	* config.charset (BeOS): Use wildcard syntax.

2001-03-09  Bruno Haible  <haible@clisp.cons.org>

	* config.charset: Update from libiconv-1.6.
	* localcharset.c: Likewise.

2001-03-04  Bruno Haible  <haible@clisp.cons.org>

	* system.h (ISSLASH, HAS_DEVICE, IS_ABSOLUTE_PATH, IS_PATH_WITH_DIR,
	FILESYSTEM_PREFIX_LEN): New macros.
	(concatenated_pathname): New declaration.
	(SET_BINARY): New macro.
	* concatpath.c: New file.
	* Makefile.am (libnlsut_a_SOURCES): Add concatpath.c.

2001-03-03  Bruno Haible  <haible@clisp.cons.org>

	* gen-lbrkprop.c: New file.
	* 3level.h: New file.
	* lbrkprop.h: New file, generated by gen-lbrkprop.
	* linebreak.h: New file.
	* linebreak.c: New file.
	* Makefile.am (EXTRA_DIST): Add gen-lbrkprop.c, 3level.h.
	(libnlsut_a_SOURCES): Add linebreak.c.
	(noinst_HEADERS): Add linebreak.h, lbrkprop.h.

	* c-ctype.h: New file.
	* c-ctype.c: New file.
	* Makefile.am (libnlsut_a_SOURCES): Add c-ctype.c.
	(noinst_HEADERS): Add c-ctype.h.

	Allow the use of locale_charset() in src.
	* config.charset: New file, from ../intl/.
	* localcharset.c: New file, from ../intl/.
	* ref-add.sin: New file, from ../intl/.
	* ref-del.sin: New file, from ../intl/.
	* Makefile.am (EXTRA_DIST): Add config.charset, ref-{add,del}.sin.
	(libnlsut_a_SOURCES): Add localcharset.c.
	(DEFS): Define to set LIBDIR.
	(INCLUDES): Add -I. -I$(srcdir) -I.. to compensate for automake's
	default DEFS setting.
	(all-local, install-exec-local, uninstall-local, charset.alias): New
	targets.
	(SUFFIXES): New variable.
	(.sin.sed): New rule.
	(CLEANFILES): New variable.

2001-03-03  Bruno Haible  <haible@clisp.cons.org>

	* printf.h (PARAMS): GNU C always supports prototypes.
	* system.h (PARAMS): Likewise.

2001-03-05  Bruno Haible  <haible@clisp.cons.org>

	* vasprintf.c (int_vasprintf): Cast second arg of strtoul, to avoid
	warning.

2001-02-04  Bruno Haible  <haible@clisp.cons.org>

	* system.h (O_BINARY, O_TEXT, setmode, fileno): New macros for systems
	that distinguish between text and binary I/O.

2001-02-04  Bruno Haible  <haible@clisp.cons.org>

	* error.c: Include <libintl.h> only if ENABLE_NLS || _LIBC.
	* getopt.c: Test ENABLE_NLS instead of 'defined HAVE_LIBINTL_H'.
	* obstack.c: Likewise.

2001-01-07  Bruno Haible  <haible@clisp.cons.org>

	* system.h: Assume <stdlib.h>, <string.h> exist.
	* fstrcmp.c: Likewise.
	* vasprintf.c: Likewise.

2001-01-05  Bruno Haible  <haible@clisp.cons.org>

	* basename.c: Include <stdio.h>, needed by assert on SunOS4.
	(basename): Convert to K&R C syntax.
	* vasprintf.c (int_vasprintf): Don't use fabs, it needs -lm on some
	platforms.

2000-12-31  Bruno Haible  <haible@clisp.cons.org>

	* hash.c (insert_entry): Use obstack_copy instead of obstack_copy0.

2000-12-30  Bruno Haible  <haible@clisp.cons.org>

	* system.h (open_po_file): Remove declaration.

2000-12-30  Bruno Haible  <haible@clisp.cons.org>

	* printf.h (printf_info): New fields is_char, is_longlong.
	(PA_FLAG_CHAR): New macro.
	* printf-parse.h: Include inttypes.h.
	(long_long_int): Define depending on HAVE_UNSIGNED_LONG_LONG.
	(ptrdiff_t): Define depending on HAVE_PTRDIFF_T.
	(parse_one_spec): Handle new ISO C99 length modifiers 'j', 't', 'z'.

2000-12-30  Bruno Haible  <haible@clisp.cons.org>

	* basename.c: Update from current fileutils version, keeping the
	function name as `basename' or `gnu_basename'.

	* error.c: Update from glibc-2.2 version.

	* fstrcmp.h: extern declaration.

	* getline.h: Comment out declarations on glibc2 systems.
	* getline.c: Make getstr() static, to avoid conflict with libncurses.

	* getopt.h: Update from glibc-2.2 version.
	* getopt.c: Likewise.

	* hash.h: Update from glibc-2.2 version. Don't assume keys are NUL
	terminated.
	(insert_entry, find_entry): Change argument type from 'const char*' to
	'const void*'.
	(iterate_table): Add keylen argument.
	* hash.c: Update from glibc-2.2 version. Don't assume keys are NUL
	terminated.
	(xcalloc): New declaration.
	(struct hash_entry): Add keylen field.
	(init_hash): Use xcalloc instead of xmalloc.
	(insert_entry_2): Add keylen argument. Use xcalloc instead of xmalloc.
	(iterate_table): Add keylen argument.
	(lookup): Compare using memcmp, not strncmp.
	(lookup_2): Add keylen argument. Compare using memcmp, not strcmp.

	* memmove.c: Revert to gettext-0.10.35 version, independent of glibc.
	* memset.c: Likewise.

	* obstack.h: Update from glibc-2.2 version. Add a few consts.
	* obstack.c: Update from glibc-2.2 version.

	* pathmax.h: Update from current fileutils version.

	* printf-prs.c: Revert to old, not multibyte aware version. Since the
	messages in the catalog can be in any encoding, use of the current
	locale's encoding is wrong here.
	* printf-parse.h (find_spec): Likewise.

	* strtol.c: Update from glibc-2.2 version.

	* strstr.c (strstr): Add an empty statement after 'shloop' label.

	* vasprintf.c: Include stdlib.h if it exists.
	(int_vasprintf): Increase buffer size for float/double values with
	positive exponent only. Recognize new ISO C99 length modifiers 'j',
	't', 'z'.
	(main): Add more tests.

	* xgetcwd.c (xgetcwd): If the required pathname length is smaller
	than 1024, return a memory chunk of least possible size, instead
	of size PATH_MAX + 2. In the loop, increment the size proportionally.
	Use free/xmalloc instead of xrealloc to avoid copying for very long
	paths.

	* xmalloc.c: Use NULL where appropriate.

	* xstrdup.c (xstrdup): Change argument type to 'const char *'.

1999-12-27  Geoff Keating  <geoffk@cygnus.com>

	* vasprintf.c (int_vasprintf): Don't re-read the format character
	as this mishandles strings like '%%s'.

1998-01-18  Michael Snyder  <msnyder@cleaver.cygnus.com>

	* vasprintf.c (int_vasprintf): Increase buffer size for float/double
	values.

2000-05-06  Ulrich Drepper  <drepper@redhat.com>

	* Makefile.am (EXTRA_DIST): Add basename.c.
	(libnlsut_a_SOURCES): Add basename.c.

1998-06-01  Ulrich Drepper  <drepper@cygnus.com>

	* printf-parse.h: Change back from using `unsigned char' to `char'.

1998-05-01 08:47  Ulrich Drepper  <drepper@cygnus.com>

	* gettext-0.10.35 released.

1998-04-29  Ulrich Drepper  <drepper@cygnus.com>

	* printf-parse.h: Use unsigned char for parameters to read_int and
	parse_one_spec (for loosing Solaris systems).
	Patch by Jim Meyering.

1998-04-28 11:42  Ulrich Drepper  <drepper@cygnus.com>

	* hash.c: Include malloc.h if stdlib.h is not available.
	Include either string.h or strings.h.

	* system.h: Include limits.h before defining MAX to prevent
	redefinitions.

	* Makefile.am: Move basename.c from EXTRA_DIST to libnlsut_a_SOURCES.

1998-04-27 20:51  Ulrich Drepper  <drepper@cygnus.com>

	* Makefile (EXTRA_DIST): Remove obstack.c here.
	(libnlsut_a_SOURCES): Add obstack.c here.

	* alloca.c: Include string.h and stdlib.h if available.  Fix typos.

	* getopt.c: Update from glibc version.

	* hash.c: Include stdlib.h.  Use #if instead of #ifdef while testing
	HAVE_* macros.  Don't include system.h.

	* printf-parse.h: Use #if instead of #ifdef.

1997-08-18 13:47  Philippe De Muyter  <phdm@info.ucl.ac.be>

	* xstrdup.c (sys/types.h): File included.
	* system.h (strstr): Function prototype added.

1997-08-15 03:01  Ulrich Drepper  <drepper@cygnus.com>

	* stpcpy.c, stpncpy.c: Copy version from glibc to fix severe bugs.

1997-08-01 15:47  Ulrich Drepper  <drepper@cygnus.com>

	* Makefile.am (AUTOMAKE_OPTIONS): Require version 1.2.

Mon Mar 10 06:52:59 1997  Ulrich Drepper  <drepper@cygnus.com>

	* xstrdup.c: Add more compatibility handling.  Pretty-print
	preprocessor directives.

	* printf-parse.h: Define _GNU_SOURCE not __USE_GNU.

	* Makefile.am: Change for use with automake-1.1.

1997-02-08 04:26  Ulrich Drepper  <drepper@cygnus.com>

	* stpncpy.c: Update from version in GNU libc 2.0.  This corrects
	a long standing bug in xgettext.

Fri Dec  6 04:20:56 1996  Ulrich Drepper  <drepper@cygnus.com>

	* system.h: Use PARAMS not __P for basename prototype.
	Reported by Kaveh R. Ghazi <ghazi@caip.rutgers.edu>.

Tue Dec  3 17:50:34 1996  Ulrich Drepper  <drepper@cygnus.com>

	* system.h: Add prototype for basename.

	* Makefile.am (EXTRA_DIST): Add basename.c.

Fri Nov 22 03:32:34 1996  Ulrich Drepper  <drepper@cygnus.com>

	* Makefile.am (EXTRA_DIST): Rename strncase.c to strncasecmp.c.

Sat Aug 31 04:52:56 1996  Ulrich Drepper  <drepper@cygnus.com>

	* Makefile.am (nlsut_SOURCES): Move error.c to EXTRA_DIST.

Wed Jun 19 02:45:02 1996  Ulrich Drepper  <drepper@cygnus.com>

	* system.h: Add prototypes for stpncpy, strcasecmp, and
	strncasecmp.

	* Makefile.am (EXTRA_DIST): Add strncase and stpncpy.

Fri Jun 14 03:56:23 1996  Ulrich Drepper  <drepper@cygnus.com>

	* getline.c (_GNU_SOURCE): Define this macro, not __USE_GNU.

	* Makefile.am (nlsut_SOURCES): Move getline.c and printf-prs.c to
	EXTRA_DIST.  Reported by Kaveh R. Ghazi.

Tue Jun 11 15:28:17 1996  Ulrich Drepper  <drepper@cygnus.com>

	* printf-prs.c: Add some casts for `n'.

	* printf-parse.h: Add prototypes and __USE_GNU definition.

	* getline.c: Define __USE_GNU to get prototype.

	* Makefile.am (AUTOMAKE_OPTIONS): Add variable.  Must be defined
	in all subdirs.

Wed Jun  5 16:54:43 1996  Ulrich Drepper  <drepper@cygnus.com>

	* Makefile.am (INCLUDES): Define include paths to intl/ dir for
	<libintl.h> file.

Mon Jun  3 19:13:36 1996  Ulrich Drepper  <drepper@cygnus.com>

	* getopt.c: Update from latest GNU libc source.  We don't need
	the AC_REPLACE_GNU_GETOPT anymore.

	* Makefile.am (EXTRA_DIST): Remove files mentioned in
	nlsut_SOURCES from EXTRA_DIST.
	(nlsut_SOURCES): Add getopt.c and getopt1.c.

Wed Apr 24 23:48:42 1996  Ulrich Drepper  <drepper@myware>

	* Makefile.in (GETOPT): Remove variable.
	(OBJECTS): Don't use $(GETOPT).  If not present the getopt are now
	listed in @LIBOBJS@.

Fri Apr  5 12:00:51 1996  Ulrich Drepper  <drepper@myware>

	* Makefile.in (SOURCES): Remove whoami.c.
	(OBJECTS): Remove whoami.o.

	* system.h: Remove prototype for `get_submitter'.

Thu Apr  4 21:14:51 1996  Ulrich Drepper  <drepper@myware>

	* system.h: Add prototype for asprintf.

Tue Apr  2 18:53:38 1996  Ulrich Drepper  <drepper@myware>

	* Makefile.in (all-gettext): New goal.  Same as all.

Tue Apr  2 12:57:44 1996  Ulrich Drepper  <drepper@myware>

	* error.c, error.h: Update from version in GNU libc.

Tue Mar 26 12:35:56 1996  Ulrich Drepper  <drepper@myware>

	* error.c, error.h: Applied François' patches for more
	portability.

Mon Mar 25 01:21:31 1996  Ulrich Drepper  <drepper@myware>

	* Makefile.in (SOURCES): Add strstr.c.

Sun Mar 24 18:41:42 1996  Ulrich Drepper  <drepper@myware>

	* error.c (error_with_loc): In `one error per line' mode check for
	old_file_name to be NULL first.  Reported by François Pinard.

Fri Mar  1 13:38:26 1996  Ulrich Drepper  <drepper@myware>

	* getopt.c: Update from latest version in GNU C Library.
	* getopt1.c: Ditto.
	* getopt.h: Ditto.

	* error.c (error_with_loc): Not simply compare string pointers to
	test for same file name.
	(error_with_loc): file_name parameter is really const.

	* error.c (error_one_per_line): New variable.
	(error_with_loc): If error_one_per_line != 0, print at most one
	error per line.

	* error.h: Declare new variable error_one_per_line.

Mon Jan  1 03:12:08 1996  Ulrich Drepper  <drepper@myware>

	* Makefile.in (GETOPTSRC): Remove this variable.

Sat Dec 30 16:26:07 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (ERROR, ERRORSRC): New variables.  error.c is now
	part of GNU libc and will not be needed on systems running this
	lib.
	(SOURCES): Replace error.c with $(ERRORSRC).
	(OBJECTS): Replace error.o with $(ERROR).

Tue Dec 19 22:08:10 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (Makefile): Explicitly use $(SHELL) for running
	shell scripts.

Sat Dec  9 16:40:49 1995  Ulrich Drepper  <drepper@myware>

	* whoami.c, system.h, printf.h, printf-parse.h, hash.h, hash.c,
	getline.h, fstrcmp.h, fstrcmp.c, error.h, error.c:
	Use PARAMS instead of __P.  Suggested by Roland McGrath.

Wed Dec  6 16:07:27 1995  ghazi@caip.rutgers.edu  <Kaveh R. Ghazi>

	* system.h: Fix alloca declaration so that it matches the one
	generated by bison on HPUX.

Sat Nov 25 16:13:50 1995  Ulrich Drepper  <drepper@myware>

	* whoami.c: Don't use #ifdef, prefer #if.

	* error.c: Capitalize arguments of macros.  Patch by François Pinard.

Thu Nov 16 22:41:32 1995  Ulrich Drepper  <drepper@myware>

	* whoami.c: Correct prototype declarations.

	* xmalloc.c: Include "error.h" instead of defining error ourself.

	* system.h: Include <stdio.h> to get FILE definition.

	* hash.c: Peter Miller suggested not to use `div' as a variable name.

	* error.c (error_print_progname): For ANSI C provide complete type.
	Include error.h.  Patches by Peter Miller.

Sun Nov 12 12:34:12 1995  Ulrich Drepper  <drepper@myware>

	* whoami.c: Add prototypes.
	(get_submitter): Use stpcpy if available.

Sat Nov 11 00:26:31 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (HEADERS):
	Add missing pathmax.h file.  Reported by François Pinard.

Fri Nov 10 09:59:06 1995  Ulrich Drepper  <drepper@myware>

	* error.h (error_print_progname):
	Provide real prototype, i.e. with argument types.
	Patch by Peter Miller.

Wed Nov  8 23:25:00 1995  Ulrich Drepper  <drepper@myware>

	* system.h: Add prototype for xgetcwd.

	* Makefile.in (SOURCES): Add xgetcwd.c.
	(OBJECTS): Add xgetcwd.o.

Tue Nov  7 11:44:32 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (intldir):
	New variable.  Use its value instead of ../intl.

Sun Nov  5 19:40:03 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (dist-gettext): Make synonym for dist.

Sun Nov  5 18:04:11 1995  Ulrich Drepper  <drepper@myware>

	* hash.c (find_entry): Remove unused variable retval.

Sun Nov  5 11:38:19 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (dist): Suppress error message when ln failed.
	Get files from $(srcdir) explicitly.

Sat Oct 28 14:25:13 1995  Ulrich Drepper  <drepper@myware>

	* fstrcmp.c:
	Revised version by Peter Miller.  Now based on GNU diff's version
	of this algorithm.

Wed Sep 27 20:18:44 1995  Ulrich Drepper  <drepper@myware>

	* system.h: Include sys/types.h for those old SysV systems out there.
	Reported by Francesco Potorti`.

Mon Sep 25 22:26:28 1995  Ulrich Drepper  <drepper@myware>

	* obstack.h (ptrdiff_t):
	Don't define unless HAVE_PTRDIFF_T is not defined.  This
	solves problems with Sun's compiler.  Reported by Marcus Daniels.

Mon Sep 18 10:45:48 1995  Ulrich Drepper  <drepper@myware>

	* fstrcmp.h, fstrcmp.c: Initial revision

Sun Sep 17 23:37:15 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in: Add fstrcmp.[ch] to libgettext.

	* system.h (open_po_file): Remove unused `use_path' parameter.

	* hash.c:
	Rewrite for uniform return values: < 0 for error cases, else >= 0.

	* Makefile.in: hash.[ch] moved from src/ to lib/ subdirectory.

Mon Aug 28 10:05:31 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in: Remove Emacs hints.

	* Makefile.in (libnlsut.a): Use $@ instead of full name.

Sat Aug 19 17:37:24 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (install-src): Make depend on `all'.

Tue Aug 15 05:51:25 1995  Ulrich Drepper  <drepper@myware>

	* system.h (xgetcwd): Remove prototype.

Mon Aug 14 23:52:41 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (install-src): New no-op goal.

Wed Aug  9 10:05:09 1995  Ulrich Drepper  <drepper@myware>

	* system.h (MAX):
	Mark GCC variant with __extension__ and change typeof to __typeof__.

Tue Aug  8 21:02:28 1995  Ulrich Drepper  <drepper@myware>

	* strcasecmp.c: Initial revision.

	* Makefile.in (SOURCES): Add strcasecmp.c.

Mon Aug  7 21:17:51 1995  Ulrich Drepper  <drepper@myware>

	* strcspn.c: Initial revision.

	* Makefile.in (SOURCES): Add strcspn.c.

Fri Aug  4 15:44:00 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (dist): Remove `copying instead' message.

Wed Aug  2 18:51:33 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (ID, TAGS): Do not use $^.

Tue Aug  1 20:07:40 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (distclean): Remove ID file.

	* Makefile.in (TAGS, ID): Use $^ as command argument.
	(TAGS): Give etags -o option t write to current directory,
	not $(srcdir).
	(ID): Use $(srcdir) instead os $(top_srcdir)/src.

Wed Jul 19 23:54:32 1995  Ulrich Drepper  <drepper@myware>

	* strtol.c: Change copyright from LGPL to GPL.

Tue Jul 18 20:09:04 1995  Ulrich Drepper  <drepper@myware>

	* strtol.c (ULONG_MAX): Define if not defined in system header.
	Reported by Francesco Potorti`.

	* printf-parse.h (parse_one_spec): Define prototype.

	* obstack.h: Put stddef.h include statement back in.

Tue Jul 18 00:19:54 1995  Ulrich Drepper  <drepper@myware>

	* vasprintf.c, strtol.c, obstack.c, getopt1.c, getopt.c, system.h,
	printf.h, obstack.h, getline.h: Uniform test for __STDC__.

Mon Jul 17 01:13:09 1995  Ulrich Drepper  <drepper@myware>

	* system.h (HAVE_MALLOC_H):
	Remove obsolete #else case.  Was needed when we tried
	to define free ourself.

	* system.h, error.h, strtoul.c, printf-parse.h, memmove.c,
	getline.h: Add `Free' to Software Foundation.

	* getline.h:
	Remove unneeded comment after #endif.  We now use indentation.

	* getline.c: Indent preprocessor directives.

	* strtol.c (NULL): Define manualy if not defined in any included file.

Sat Jul 15 23:59:26 1995  Ulrich Drepper  <drepper@myware>

	* obstack.h: Add accidently removed #endif.

Sat Jul 15 23:31:45 1995  Ulrich Drepper  <drepper@myware>

	* vasprintf.c, printf-prs.c, obstack.h, obstack.c, memmove.c,
	printf.h, printf-parse.h:
	Exchange old LGPL against new GPL (no LGPL code in normal packages).

	* getline.h: Add copyright.

	* strtoul.c, strtol.c: Initial revision

	* obstack.h (ptrdiff_t):
	Don't include stddef.h.  Try to get it with sys/types.h and
	if _PTRDIFF_T and ptrdiff_t are not defined, define it to off_t
	(which is at least defined in config.h).

	* system.h (HAVE_STDLIB_H):
	Is not useful if STDC_HEADERS is not also defined.

Sat Jul 15 00:49:22 1995  Ulrich Drepper  <drepper@myware>

	* error.h: Correct definition of size_t: don't try to include
	stddef.h, but instead use sys/types.  If it is not found here,
	the config.h file will define it.

	* system.h: Load <stdlib.h> before defining prototypes.  This
	avoids problems with size_t not defined in the prototypes.

	* printf-parse.h (find_spec): Handle missing mblen function.

Thu Jul 13 22:28:38 1995  Ulrich Drepper  <drepper@myware>

	* system.h (MAX):
	Move definition to end to reduce possibility of redefinition.

	* whoami.c (get_username, get_hostname, get_submitter):
	Use K&R prototypes.

	* vasprintf.c: Include config.h.

	* printf.h (printf_info):
	Use `char' and `unsigned' instead of `unsigned char' and
	`unsigned int' resp. to help these dumb K&R compilers.

	* printf-parse.h:
	Compilers other than GCC don't have `long long', K&R compiler
	even don't have	`long double'.

Thu Jul 13 01:41:41 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (check): New goal.

Tue Jul 11 21:37:19 1995  Ulrich Drepper  <drepper@myware>

	* vasprintf.c (HAVE_STRTOUL):
	Not needed anymore because we substitute strtoul if not present.

Tue Jul 11 01:34:06 1995  Ulrich Drepper  <drepper@myware>

	* whoami.c: Define NULL is necessary.

	* obstack.h: Protect inclusion of stddef and define ptrdiff_t if
	necessary.

	* memmove.c: Include sys/types.h and perhaps stdlib.h instead of
	stddef.h for getting size_t defined.

	* system.h: Don't define free, qsort, and strtol when no header
	file is available.
	Define EXIT_{FAILURE,SUCCESS} after stdlib.h is	included.

	* printf.h: Protect non-ANSI header inclusion.
	Protect __P definition.
	Don't use __const in prototypes.

	* printf-prs.c: Include config.h.
	Protect stdlib.h inclusion.

	* printf-parse.h: Protect header inclusion for non-ANSI environments.
	Protect and de-GCC-ify MAX/MIN definition.

	* Makefile.in (SOURCES): New files: strtol.c and strtoul.c.
	Depend $(OBJECT) on config.h,, instead of $(LIBOBJS).
	Better dependency for printf-prs.o.

Tue Jul  4 22:09:00 1995  Ulrich Drepper  <drepper@myware>

	* Makefile.in (SOURCES): add memmove.c.

	* memmove.c: Initial revision.

	* error.h: Make size_t definition correct for !__STDC__.
	Include <stddef.h> for getting size_t defined.

	* vasprintf.c: Don't use strtoul if !HAVE_STRTOUL.

	* system.h: Include <stdlib.h> also if defined HAVE_STDLIB_H.
	Make sure that qsort, free and strtoul are prototyped.

Mon Jul  3 15:02:50 1995  Ulrich Drepper  <drepper@myware>

	* system.h: system.h (MAX): don't use GCC feature if !__STDC__.
	Fix typo in EXIT_FAILURE defintion.

	* xmalloc.c: Include prototype for calloc.c.

	* Makefile.in (INCLUDES): even better path list.
	(INCLUDES): remove unnecessary paths.
	Correct path to original version.

Sun Jul  2 02:01:43 1995  Ulrich Drepper  <drepper@myware>

	* First official release.  This directory contains supplementary
	code taken from GNU C Library and other package's lib/
	directories.