-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog.0
1770 lines (1057 loc) · 50.9 KB
/
ChangeLog.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2003-01-31 Bruno Haible <[email protected]>
* PACKAGING: Add gettext-po.h and libgettextpo*.
2003-01-03 Albert Chin <[email protected]>
* ltmain.sh: Don't pass -R flags found in a .la's dependency_libs
variable directly down to the linker.
Reported by Tim Mooney <[email protected]>.
2003-01-14 Bruno Haible <[email protected]>
* configure.in (gt_cv_prog_cxx_namespaces): Reject C++ compilers that
have namespaces but for which std::ostream is undefined, like cxx on
Tru64.
Reported by Martin Mokrejš <[email protected]>.
2003-01-12 Bruno Haible <[email protected]>
* configure.in: Invoke gl_FUNC_ALLOCA instead of AC_FUNC_ALLOCA.
2003-01-12 Bruno Haible <[email protected]>
* Makefile.am: Make use of += for variables.
2002-12-16 Bruno Haible <[email protected]>
* configure.in: Add test for <utime.h>. Needed for mingw32.
2002-12-07 Bruno Haible <[email protected]>
Switch to autoconf-2.57 and automake-1.7.2.
* configure.in: Use AC_CONFIG_FILES, because the AC_OUTPUT commands
and not run any more when config.status is called to create a single
file.
* elisp-comp: New file, from automake-1.7.2.
2002-11-19 Bruno Haible <[email protected]>
Switch to autoconf-2.56.
* configure.in (LTLIBOBJS): Remove variable.
2002-11-14 Bruno Haible <[email protected]>
* Makefile.am ($(srcdir)/tests/rpathx/aclocal.m4,
$(srcdir)/tests/rpathy/aclocal.m4,
$(srcdir)/tests/rpathz/aclocal.m4): Depend on m4/libtool.m4.
2002-11-13 Bruno Haible <[email protected]>
Assume ANSI C.
* configure.in: Remove AC_C_BACKSLASH_A call.
* os2/configure.awk: Remove HAVE_C_BACKSLASH_A setting.
2002-11-07 Bruno Haible <[email protected]>
* ltmain.sh: Upgrade to libtool-1.4.3.
* config.rpath: Upgrade to libtool-1.4.3.
2002-10-28 Bruno Haible <[email protected]>
* config.guess, config.sub: Update to GNU version 2002-10-21.
2002-10-27 Bruno Haible <[email protected]>
* libasprintf: New subdirectory.
* configure.in (CXX): Adjust to match the result in and the
requirements of the libasprintf subdirectory.
(SUBDIR_libasprintf): New AC_SUBST.
(AC_CONFIG_SUBDIRS): Recurse into libasprintf.
* Makefile.am (SUBDIRS): Add libasprintf conditionally.
(DIST_SUBDIRS): New variable.
* PACKAGING: Add libasprintf.*, autosprintf.h, and its documentation
autosprintf.html, autosprintf.info.
2002-10-27 Bruno Haible <[email protected]>
* PACKAGING: Update list of installed .m4 files.
2002-09-27 Bruno Haible <[email protected]>
* mkinstalldirs: Update from automake-1.7+.
2002-09-16 Bruno Haible <[email protected]>
* ltmain.sh (install): Use "ln -s -f" instead of "rm -f && ln -s"
to make a symlink for a shared library.
Reported by Nelson H. F. Beebe <[email protected]>.
2002-08-06 Bruno Haible <[email protected]>
* gettext-0.11.5 released.
2002-07-25 Bruno Haible <[email protected]>
* gettext-0.11.4 released.
2002-07-17 Bruno Haible <[email protected]>
* gettext-0.11.3 released.
2002-07-16 Bruno Haible <[email protected]>
* configure.in: Bump version number to 0.11.3.
(RELEASE_DATE): Bump.
2002-07-16 Bruno Haible <[email protected]>
* configure.in: Call gt_GCJ and set BUILDJAVAEXE.
2002-07-16 Bruno Haible <[email protected]>
* config.guess, config.sub: Update to GNU version 2002-07-09.
2002-07-14 Bruno Haible <[email protected]>
* configure.in: Switch to autoconf-2.52. Split AC_INIT into AC_INIT
and AC_CONFIG_SRCDIR. Replace AM_TYPE_PTRDIFF_T with AC_CHECK_TYPES.
Call AH_TOP and AH_BOTTOM with earlier contents of acconfig.h. Use
AC_LANG_PUSH/AC_LANG_POP instead of AC_LANG_CPLUSPLUS/AC_LANG_RESTORE.
Use AC_TRY_EVAL instead of AC_TRY_COMPILER.
* acconfig.h: Remove file.
2002-06-15 Bruno Haible <[email protected]>
* configure.in: Call AC_LIBTOOL_WIN32_DLL.
2002-05-19 Bruno Haible <[email protected]>
* Makefile.am (CONFIGURES_RPATHZ, CONFIGURES_RPATHLZ,
CONFIGURES_RPATHLZYX): New variables.
(SUBCONFIGURES): Add them.
($(srcdir)/tests/rpath*z*/Makefile.in): New rules.
($(srcdir)/tests/rpath*z*/aclocal.m4): New rules.
($(srcdir)/tests/rpath*z*/configure): New rules.
2002-05-18 Bruno Haible <[email protected]>
* PACKAGING: Remove note about libgettextlib.a and libgettextsrc.a.
2002-05-03 Bruno Haible <[email protected]>
* Makefile.am (SUBDIRS): Move man and m4 after projects and misc.
'man' must be after 'misc' because 'misc' contains some programs.
2002-05-01 Bruno Haible <[email protected]>
* configure.in (AC_OUTPUT): Add misc/autopoint. Make misc/autopoint
executable.
2002-05-01 Bruno Haible <[email protected]>
* INSTALL: Remove the recommendation to set CPPFLAGS and LDFLAGS.
The lib-link.m4 macros make this unnecessary.
2002-04-28 Bruno Haible <[email protected]>
* Makefile.am (gettextsrc_SCRIPTS): Add mkinstalldirs.
2002-04-24 Bruno Haible <[email protected]>
* gettext-0.11.2 released.
2002-04-24 Bruno Haible <[email protected]>
* configure.in: Bump version number to 0.11.2.
(RELEASE_DATE): Bump.
2002-03-15 Andrew Zabolotny <[email protected]>
* os2/README.OS2: Update.
* os2/Makefile: Likewise.
2002-03-12 Bruno Haible <[email protected]>
* gettext-0.11.1 released.
2002-03-12 Bruno Haible <[email protected]>
* configure.in: Bump version number to 0.11.1.
(RELEASE_DATE): Bump.
* Makefile.am (EXTRA_DIST): Add some more djgpp/* files.
2002-03-09 Bruno Haible <[email protected]>
* configure.in: Don't check for stpncpy; AIX 4.3.3 has an incompatible
implementation of it.
* acconfig.h (HAVE_STPNCPY): Define on glibc systems only.
2002-03-07 Bruno Haible <[email protected]>
* Makefile.am (MAKEINFO): New variable.
* missing (makeinfo): Don't call touch without arguments if the source
texinfo file doesn't contain a @setfilename command.
Reported by Miroslaw Dobrzanski-Neumann <[email protected]>.
2002-02-15 Bruno Haible <[email protected]>
* djgpp/*: Update DJGPP support.
From Juan Manuel Guerrero <[email protected]>.
* configure.in (CXX): Recognize 'gpp' as an alternative name for 'g++'.
2002-02-14 Andrew Zabolotny <[email protected]>
* os2/README.OS2: Update.
* os2/Makefile: Update.
2002-02-10 Bruno Haible <[email protected]>
* Makefile.am (EXTRA_DIST): Remove os2/iconv/README.
2002-01-14 Bruno Haible <[email protected]>
* configure.in: Add check for libexpat.
2002-02-02 Bruno Haible <[email protected]>
* Makefile.am (SUBDIRS): Add libuniname.
* configure.in (AC_OUTPUT): Add libuniname/Makefile.
2002-02-06 Bruno Haible <[email protected]>
* ltmain.sh: Upgrade from libtool-1.4 to libtool-1.4.2.
* config.rpath: Likewise.
2002-02-02 Bruno Haible <[email protected]>
* ltmain.sh: Add DESTDIR support on ELF systems.
2002-01-31 Bruno Haible <[email protected]>
* gettext-0.11 released.
2002-01-31 Bruno Haible <[email protected]>
* configure.in: Bump version number to 0.11.
(RELEASE_DATE): Bump.
* Makefile.am (EXTRA_DIST): Remove README-alpha.
2002-01-31 Bruno Haible <[email protected]>
* INSTALL: Remove instructions for using Intel icc. It's getting to
be fixed in icc.
2002-01-30 Bruno Haible <[email protected]>
* configure.in:
Check for strtoul through AC_CHECK_FUNCS, not AC_REPLACE_FUNCS.
Call gt_FUNC_ERROR_AT_LINE instead of AM_FUNC_ERROR_AT_LINE.
* PACKAGING: New file.
* Makefile.am (EXTRA_DIST): Add it.
2002-01-24 Bruno Haible <[email protected]>
* Makefile.am ($(srcdir)/tests/rpathy/aclocal.m4): Fix dependencies.
2002-01-21 Bruno Haible <[email protected]>
* Makefile.am (EXTRA_DIST): Add os2/configure.awk.
Remove os2/iconv/iconv.h, os2/iconv/iconv.c.
2002-01-20 Bruno Haible <[email protected]>
* Makefile.am (CONFIGURES_RPATH*): New variables.
($(srcdir)/tests/rpath*/Makefile.in): New rules.
($(srcdir)/tests/rpath*/aclocal.m4): New rules.
($(srcdir)/tests/rpath*/configure): New rules.
(SUBCONFIGURES): New variable.
(subconfigures): New target.
(distdir): Depend on subconfigures.
* configure.in: Propagate GCC, LD, with_gnu_ld to Makefiles.
Postprocess Makefile because of distdir dependency.
2002-01-12 Bruno Haible <[email protected]>
* INSTALL: Add instructions for using Intel icc.
2002-01-11 Bruno Haible <[email protected]>
* configure.in: Change version number to 0.11-pre5.
2002-01-11 Bruno Haible <[email protected]>
* configure.in: Postprocess doc/Makefile a second time.
2002-01-10 Bruno Haible <[email protected]>
* acconfig.h [OS/2]: Include intl/os2compat.h, not os2/os2compat.h.
* Makefile.am (EXTRA_DIST): Remove os2/os2compat.h.
2002-01-10 Andrew Zabolotny <[email protected]>
* os2/README.OS2: Update.
* os2/Makefile: Heavily reworked.
* os2/iconv/iconv.c: Bug fixes.
2002-01-07 Bruno Haible <[email protected]>
* config.rpath [IRIX]: Fix typo.
2002-01-05 Bruno Haible <[email protected]>
* configure.in: Postprocess doc/Makefile.
2002-01-04 Bruno Haible <[email protected]>
* config.guess, config.sub: Update to GNU version 2002-01-02.
2001-12-17 Bruno Haible <[email protected]>
* configure.in: Call gt_FUNC_FNMATCH.
2001-12-17 Bruno Haible <[email protected]>
* configure.in: Change version number to 0.11-pre4.
2001-12-15 Andrew Zabolotny <[email protected]>
Bruno Haible <[email protected]>
* os2/*: New EMX support.
* Makefile.am (EXTRA_DIST): Remove old os2/ contents, add new os2/
contents.
* acconfig.h: Add conditional include of os2/os2compat.h.
2001-12-11 Bruno Haible <[email protected]>
* configure.in: Use a variant of AC_PROG_CXX_WORKS that doesn't abort
upon failure.
2001-12-11 Bruno Haible <[email protected]>
* configure.in: Change version number to 0.11-pre3.
2001-12-02 Bruno Haible <[email protected]>
* config.rpath: New file.
* Makefile.am (EXTRA_DIST): Add it.
(gettextsrc_SCRIPTS): New variable.
2001-11-30 Bruno Haible <[email protected]>
* configure.in: Change version number to 0.11-pre2.
2001-11-25 Bruno Haible <[email protected]>
* configure.in: Check for C++ compiler.
2001-11-18 Bruno Haible <[email protected]>
* configure.in: Make misc/gettextize executable.
2001-11-10 Bruno Haible <[email protected]>
* acconfig.h (PARAMS): Also test for __GNUC__, __SUNPRO_C, __cplusplus
and __PROTOTYPES because on 64-bit Solaris, we need prototypes
although __STDC__ is often defined to 0. __GNUC__ covers GCC,
__SUNPRO_C covers Sun cc, regardless of compilation flags.
__PROTOTYPES, __cplusplus are just for consistency with libgnuintl.h.
2001-11-03 Bruno Haible <[email protected]>
* ltmain.sh: chmod 777 the .libs directory, so that "make install"
succeeds.
2001-10-30 Bruno Haible <[email protected]>
* configure.in: Change version number to 0.11-pre1.
* Makefile.am (EXTRA_DIST): Add README-alpha.
2001-10-21 Bruno Haible <[email protected]>
* configure.in: Define LTLIBOBJS and LTALLOCA based on LIBOBJS, ALLOCA.
2001-10-19 Bruno Haible <[email protected]>
* configure.in: Remove check for texi2html.
2001-10-09 Bruno Haible <[email protected]>
* configure.in: Also check for putc_unlocked.
2001-10-21 Bruno Haible <[email protected]>
* Makefile.am (SUBDIRS): Add projects.
* configure.in (AC_OUTPUT): Add projects/Makefile.
2001-09-29 Bruno Haible <[email protected]>
* configure.in: Also create src/user-email.
2001-09-29 Bruno Haible <[email protected]>
* configure.in: Call gt_PREREQ_HOSTNAME.
2001-09-25 Bruno Haible <[email protected]>
Upgrade to automake-1.5.
* aclocal.sh: Remove file.
* Makefile.am (AUTOMAKE_OPTIONS): Add 'no-dependencies'.
(EXTRA_DIST): Remove aclocal.sh.
* configure.in: Add some postprocessing to lib/Makefile, src/Makefile,
tests/Makefile.
* missing: Upgrade to automake-1.5.
* ylwrap: New file, from automake-1.5.
2001-09-23 Bruno Haible <[email protected]>
* configure.in: Call gt_SIGINFO.
2001-10-20 Bruno Haible <[email protected]>
* DISCLAIM: Update from
http://www.iro.umontreal.ca/contrib/po/doc/DISCLAIM.
2001-10-20 Bruno Haible <[email protected]>
Assume strchr() exists.
* configure.in: Remove check for strchr.
2001-09-17 Bruno Haible <[email protected]>
* configure.in: Call gt_PREREQ_BACKUPFILE.
2001-09-17 Bruno Haible <[email protected]>
* configure.in: Check for utime and utimes.
2001-09-08 Bruno Haible <[email protected]>
* configure.in (AC_OUTPUT): Add intl-java/Makefile.
* Makefile.am (SUBDIRS): Add intl-java.
2001-09-16 Bruno Haible <[email protected]>
* configure.in: Don't check for memmove (unneeded).
2001-09-02 Bruno Haible <[email protected]>
* configure.in: Add check for 'raise'. Call gt_SIGNALBLOCKING.
2001-09-08 Bruno Haible <[email protected]>
* configure.in: Call gt_JAVACOMP and check for 'jar'. Define BUILDJAVA.
Call gt_JAVAEXEC. Define TESTJAVA.
(AC_OUTPUT): Also create lib/javacomp.sh and lib/javaexec.sh.
2001-09-06 Bruno Haible <[email protected]>
* configure.in: Add AC_REPLACE_FUNCS of strpbrk.
2001-09-06 Bruno Haible <[email protected]>
* configure.in: Call gt_FUNC_SETENV.
2001-09-02 Bruno Haible <[email protected]>
* configure.in: Call gt_TMPDIR and gt_FUNC_MKDTEMP.
2001-09-03 Bruno Haible <[email protected]>
* configure.in: Call gt_PROG_LEX.
2001-08-26 Bruno Haible <[email protected]>
* configure.in: Remove parse_printf_format check.
2001-07-28 Bruno Haible <[email protected]>
* configure.in: Don't call AC_REVISION. It modifies configure.in
during "cvs commit" after "make dist".
2001-07-28 Bruno Haible <[email protected]>
* configure.in (AC_OUTPUT): Add man/x-to-1.
2001-07-26 Bruno Haible <[email protected]>
* configure.in (configure.in): Remove automake bug workarounds, not
needed anymore with automake-1.4-p5.
2001-07-22 Bruno Haible <[email protected]>
* configure.in (ALL_LINGUAS): Remove assignment.
2001-08-02 Bruno Haible <[email protected]>
* README: Change bug report address to <[email protected]>.
* configure.in: Likewise.
2001-06-30 Bruno Haible <[email protected]>
* configure.in: Call gt_STDBOOL_H.
2001-06-25 Bruno Haible <[email protected]>
* configure.in (ACLOCAL_VERSION): Remove.
2001-06-25 Bruno Haible <[email protected]>
* aclocal.sh: Tweak last patch for automake-1.4f.
2001-06-23 Bruno Haible <[email protected]>
* aclocal.sh: Don't fail if aclocal isn't available.
2001-06-15 Bruno Haible <[email protected]>
* configure.in: Remove post-processing of tests/Makefile.
2001-06-10 Bruno Haible <[email protected]>
* configure.in: Add test for cross compilation and for PERL.
2001-06-10 Bruno Haible <[email protected]>
* configure.in: Bump version number to 0.11.
2001-06-10 Bruno Haible <[email protected]>
* configure.in: Check for ssize_t, pid_t, posix_spawn, select.
Call AC_FUNC_VFORK, gt_UNION_WAIT.
2001-09-13 Bruno Haible <[email protected]>
* gettext-0.10.40 released.
2001-09-13 Bruno Haible <[email protected]>
* configure.in: Bump version number to 0.10.40.
(RELEASE_DATE): Bump.
* config.guess, config.sub: Update to GNU version 2001-09-13.
2001-07-31 Bruno Haible <[email protected]>
* Makefile.am (AUTOMAKE_OPTIONS): Bump to 1.4. Use option 'gnu', not
'gnits', to avoid distributing README-alpha.
2001-07-24 Bruno Haible <[email protected]>
* gettext-0.10.39 released.
2001-06-08 Bruno Haible <[email protected]>
* ltmain.sh: Upgrade to libtool-1.4.
* ltconfig: Remove file.
2001-05-23 Bruno Haible <[email protected]>
* gettext-0.10.38 released.
2001-05-23 Bruno Haible <[email protected]>
* configure.in: Bump version number to 0.10.38.
(RELEASE_DATE): Bump.
* INSTALL (Optional Features): Document --with-libiconv-prefix.
(Particular Systems): Generalize section about /usr/local to "most
systems".
* config.guess, config.sub: Update to GNU version 2001-05-11.
2001-05-20 Bruno Haible <[email protected]>
* Makefile.am (SUBDIRS): Add man.
* configure.in (AC_OUTPUT): Add man/Makefile.
2001-05-17 Bruno Haible <[email protected]>
* configure.in (ALL_LINGUAS): Add cs, gl, id, it, ru. zh.
2001-04-30 Bruno Haible <[email protected]>
* configure.in (ALL_LINGUAS): Add et.
2001-04-19 Bruno Haible <[email protected]>
* gettext-0.10.37 released.
2001-04-17 Bruno Haible <[email protected]>
* configure.in: Check for dvips, texi2pdf, texi2html.
2001-04-17 Bruno Haible <[email protected]>
* configure.in: Bump version number to 0.10.37.
(RELEASE_DATE): Bump.
2001-04-04 Bruno Haible <[email protected]>
* configure.in: Call jm_PREREQ_MBSWIDTH.
2001-04-04 Bruno Haible <[email protected]>
* Makefile.am (ps, pdf, html): New targets.
2001-04-02 Bruno Haible <[email protected]>
* configure.in (ALL_LINGUAS): Add pt_BR.
2001-03-29 Bruno Haible <[email protected]>
* gettext-0.10.36 released.
2001-03-28 Bruno Haible <[email protected]>
* config.guess, config.sub: Update to GNU version 2001-03-19.
2001-03-25 Bruno Haible <[email protected]>
* acconfig.h (WARN_ID_LEN): Remove macro.
2001-03-21 Bruno Haible <[email protected]>
* INSTALL (Particular Systems): Add recommendations for AIX 3.
2001-03-20 Bruno Haible <[email protected]>
* Makefile.am (MAINTAINERCLEANFILES): Remove variable.
(EXTRA_DIST): Incorporate its contents.
2001-03-16 Bruno Haible <[email protected]>
* configure.in: Postprocess tests/Makefile to work around an
inconsistency in automake-1.4: EXTRA_PROGRAMS is not treated like
bin_PROGRAMS.
2001-03-11 Bruno Haible <[email protected]>
* configure.in: Add AC_REPLACE_FUNCS(strcasecmp). Needed for EMX.
2001-03-11 Bruno Haible <[email protected]>
* configure.in: Use AM_FUNC_GETLINE instead of
AC_REPLACE_FUNCS(getline). Needed for HP-UX 10.
2001-03-11 Bruno Haible <[email protected]>
* configure.in: Pass 'need-ngettext' to AM_GNU_GETTEXT.
2001-03-11 Bruno Haible <[email protected]>
* configure.in (ALL_LINGUAS): Add en@quot and en@boldquot.
2001-03-10 Bruno Haible <[email protected]>
* INSTALL: New section "Particular Systems".
* configure.in: Postprocess Makefile to work around another
automake-1.4 bug: on FreeBSD, shell commands are run with "set -e".
* configure.in: Postprocess misc/Makefile to work around another
automake-1.4 bug: if @EMACS@ = no, $(lispdir) is empty.
2001-03-09 Bruno Haible <[email protected]>
* os2/*: EMX support.
From Jun Sawataishi <[email protected]>.
* Makefile.am (EXTRA_DIST): Add these files.
2001-03-09 Bruno Haible <[email protected]>
* config.guess, config.sub: Update to GNU version 2001-03-06.
2001-03-09 Bruno Haible <[email protected]>
* djgpp/*: DJGPP support.
From Juan Manuel Guerrero <[email protected]>.
* Makefile.am (EXTRA_DIST): Add these files.
(MAINTAINERCLEANFILES): New variable.
2001-03-09 Bruno Haible <[email protected]>
* configure.in (RELEASE_DATE): New variable.
Create intl/ChangeLog.inst.
2001-03-03 Bruno Haible <[email protected]>
* ltconfig:
sed -e 's/reload object files/produce relocatable object files/'.
Better support for DOS/Windows platforms.
* configure.in: Call AC_OBJEXT and AC_EXEEXT.
2001-03-06 Bruno Haible <[email protected]>
* configure.in: Call bh_C_SIGNED.
2001-02-27 Bruno Haible <[email protected]>
* configure.in (ALL_LINGUAS): Replace no@nynorsk with nn.
2001-02-10 Bruno Haible <[email protected]>
* configure.in (ALL_LINGUAS): Add ja.
2001-02-04 Bruno Haible <[email protected]>
* Makefile.am (SUBDIRS): Move intl before lib, because lib needs
libintl.h if the included libintl is used.
2001-01-21 Bruno Haible <[email protected]>
Use libtool.
* configure.in: Add argument 'use-libtool' to AM_GNU_GETTEXT call.
2001-01-20 Bruno Haible <[email protected]>
* configure.in: Add a third argument to AC_DEFINE.
Require autoconf-2.13.
* acconfig.h (_GNU_SOURCE): Remove, now done in configure.in.
(HAVE_PARSE_PRINTF_FORMAT): Likewise.
(ENABLE_NLS): Remove, now done in m4/gettext.m4.
(HAVE_GETTEXT): Likewise.
(HAVE_STPCPY): Likewise.
(HAVE_LC_MESSAGES): Remove, now done in m4/lcmessage.m4.
(HAVE_PTRDIFF_T): Remove, now done in automake-1.4's ptrdiff.m4.
(HAVE_OBSTACK): Remove, not set by configure.
(HAVE_CATGETS): Likewise.
2001-01-07 Bruno Haible <[email protected]>
* Makefile.am (DISTCLEANFILES): Remove. Now done in intl/Makefile.in.
* configure.in: Stop creating intl/intlh.inst from intl/intlh.inst.in.
Now done through a simple file copy.
2001-01-06 Bruno Haible <[email protected]>
* configure.in: Use AC_CHECK_HEADERS instead of AC_HAVE_HEADERS.
Call gt_SETLOCALE.
2000-12-30 Bruno Haible <[email protected]>
* ltconfig, ltmain.sh: Update from libtool-1.3.5.
* config.guess, config.sub: Update to GNU version 2000-11-10.
* missing: Update from gmp-3.1.1.
* install-sh: Update from fileutils-4.0.32.
2000-12-30 Bruno Haible <[email protected]>
* configure.in: Call jm_AC_TYPE_UNSIGNED_LONG_LONG and
jm_AC_TYPE_UINTMAX_T.
2000-11-09 Bruno Haible <[email protected]>
* configure.in (ALL_LINGUAS): Add tr.
2000-08-23 Bruno Haible <[email protected]>
* configure.in: Invoke AC_C_BACKSLASH_A.
2000-07-29 Bruno Haible <[email protected]>
* Makefile.am (EXTRA_DIST): Add aclocal.sh.
2000-07-28 Bruno Haible <[email protected]>
* configure.in: Postprocess misc/Makefile to workaround an automake
bug.
2000-06-16 Bruno Haible <[email protected]>
* Makefile.am: Put back the ACLOCAL_AMFLAGS definition, but define
ACLOCAL as a wrapper around aclocal.
* aclocal.sh: New file.
* config.guess, config.sub: Update to GNU version 2000-06-13.
* misc/locale.alias: Update to glibc CVS version 2000-06-13.
2000-05-06 Ulrich Drepper <[email protected]>
* Makefile.am: Comment out ACLOCAL_AMFLAGS definition. The files
come with automake and therefore the -I will cause redefinitions.
* acconfig.h: Define HAVE_BASENAME if glibc is used.
1998-05-01 08:47 Ulrich Drepper <[email protected]>
* gettext-0.10.35 released.
1998-04-30 23:20 Ulrich Drepper <[email protected]>
* configure.in: Remove commands in AC_OUTPUT. Moved into
AM_GNU_GETTEXT macro in m4/gettext.m4.
* configure.in: Bump version number to 0.10.35.
1998-04-28 16:07 Ulrich Drepper <[email protected]>
* configure.in: Bump version number to 0.10.34.
Don't test for basename function.
1998-04-27 20:36 Ulrich Drepper <[email protected]>
* Makefile.am (AUTOMAKE_OPTIONS): Require version 1.3.
(ACLOCAL_AMFLAGS): New variable, set to -I m4.
(aclocaldir): Definition removed.
(gettextsrc_DATA): New variable, set to ABOUT_NLS.
* configure.in: Bump version number to 0.10.33.
Define INCLUDE_LOCALE_H in gettext.m4. Remove AC_LINK_FILES line,
can now be in gettext.m4. Rewrite also m4/Makefile.
1997-09-06 01:11 Ulrich Drepper <[email protected]>
* configure.in: Bump version number to 0.10.32.
1997-09-05 05:44 Ulrich Drepper <[email protected]>
* configure.in (ALL_LINGUAS): Add da.
1997-08-21 15:02 Ulrich Drepper <[email protected]>
* progtest.m4: Change copyright.
* lcmessage.m4: Change copyright.
* gettext.m4: Change copyright.
1997-08-19 03:20 Ulrich Drepper <[email protected]>
* configure.in: Bump version number to 0.10.31.
1997-08-18 13:47 Philippe De Muyter <[email protected]>
* configure.in (ACLOCAL_VERSION): Do not use nested \(..\) with sed.
1997-08-15 03:04 Ulrich Drepper <[email protected]>
* configure.in (VERSION): Bump version number to 0.10.30.
* acconfig.h: Change DEFAULT_ALIGNMENT to DEFAULT_OUTPUT_ALIGNMENT
to avoid clash with macro with same name in obstack.c.
Reported by Akim Demaille <[email protected]>.
1997-08-15 12:40 Ulrich Drepper <[email protected]>
* configure.in (VERSION): Bump to 0.10.29.
1997-08-01 15:47 Ulrich Drepper <[email protected]>
* configure.in: Remove obstack test.
Don't always rewrite po/Makefile.in, only if in CONFIG_FILES.
* Makefile.am (EXTRA_DIST): Add README.gemtext.
* Makefile.am (AUTOMAKE_OPTIONS): Require version 1.2.
1997-05-29 12:44 Ulrich Drepper <[email protected]>
* gettext.m4: Don't use INTLDEPS="../intl/libintl.a" which forces
a to use only one level of subdirs. Use $(top_builddir)/intl
instead.
Patch by Akim Demaille <[email protected]>.
1997-05-01 02:26 Ulrich Drepper <[email protected]>
* configure.in (VERSION): Bump to 0.10.28.
* gettext.m4: Check for sys/param.h header.
Patch by Bruno Haible <[email protected]>.
* gettext.m4: Be safe and call test with quoted arguments and
explicit -n option.
Patch by Bruno Haible <[email protected]>.
* gettext.m4: Require AC_PROG_RANLIB.
Reported by Tom Tromey <[email protected]>.
* gettext.m4: Remove POTFILES before generating it.
Patch by Jim Meyering <[email protected]>.
Wed Dec 4 00:36:11 1996 Ulrich Drepper <[email protected]>
* Makefile.am (EXTRA_DIST): Remove @DIST-ALPHA@.
Tue Dec 3 23:55:43 1996 Ulrich Drepper <[email protected]>
* configure.in: Make sure aclocaldir gets substituted.
Tue Dec 3 19:38:41 1996 Ulrich Drepper <[email protected]>
* Makefile.am (aclocal_DATA): Install aclocal macros for gettext.
* configure.in: Bump version number to 0.10.26.
Fri Nov 22 22:57:48 1996 Ulrich Drepper <[email protected]>
* Makefile.am (EXTRA_DIST): Add gettext.m4, lcmessage.m4, and
progtest.m4.
Reported by Tom Tromey.
Thu Nov 21 23:07:20 1996 Ulrich Drepper <[email protected]>
* configure.in: Use AM_INIT_AUTOMAKE. Rename various tests to
official AM_*. Write tests/Makefile.
* aclocal.m4: Removed. The test are now in separate files.
* gettext.m4, progtext.m4, lcmessage.m4: New files.
* Makefile.am (AUTOMAKE_OPTIONS): Require 1.1.
(MAINT_CHARSET): Latin 1 is used here.
(gettextdemodir): Removed.
(gettextdemo_DATA): Removed.
Fri Sep 20 12:41:23 1996 Ulrich Drepper <[email protected]>
* configure.in (ALL_LINGUAS): Add pt.
Wed Sep 18 17:55:23 1996 Ulrich Drepper <[email protected]>
* Makefile.am (SUBDIRS): Change checks to tests.
Sat Aug 31 14:19:04 1996 Ulrich Drepper <[email protected]>
* configure.in (VERSION): Bump to 0.10.25.
Sat Aug 31 04:50:13 1996 Ulrich Drepper <[email protected]>
* configure.in: Add test for error which is part of GNU libc.
* aclocal.m4: Check for gettext in libc. Necessary for GNU libc.
Tue Aug 27 04:05:19 1996 Ulrich Drepper <[email protected]>
* configure.in (ALL_LINGUAS): Add es.
Sun Aug 18 18:49:34 1996 Ulrich Drepper <[email protected]>
* configure.in: Use AM_PROG_INSTALL instead of fp_PROG_INSTALL.
* aclocal.m4 (fp_PROG_INSTALL): Rename to AM_PROG_INSTALL.
Fri Jul 19 12:18:55 1996 Ulrich Drepper <[email protected]>
* configure.in: Don't use NULL in check for obstack.
Tue Jul 16 01:51:47 1996 Ulrich Drepper <[email protected]>
* aclocal.m4: Correct text for --with-included-gettext option.
Patch by François Pinard.
Sun Jul 14 01:16:19 1996 Ulrich Drepper <[email protected]>
* configure.in (VERSION): Bump to 0.10.24.
Sat Jul 6 01:49:26 1996 Ulrich Drepper <[email protected]>
* configure.in (VERSION): Bump to 0.10.23.
Tue Jul 2 16:42:20 1996 Ulrich Drepper <[email protected]>
* configure.in (ALL_LINGUAS): Add nl.
Add AC_PROG_MKINSTALLDIRS test.
Set AC_PREREQ to 2.99 since no official autoconf has the
bugs fixed.
* aclocal.m4: Fix check for obsolete xgettext implementation.
Patch by Marcus Daniels.
Sat Jun 22 04:25:23 1996 Ulrich Drepper <[email protected]>
* aclocal.m4: Define MKINSTALLDIRS.
* configure.in (VERSION): Bump to 0.10.22.
Wed Jun 19 01:26:09 1996 Ulrich Drepper <[email protected]>
* configure.in (AC_REPLACE_FUNCS): Add stpncpy.
* configure.in (VERSION): Bump to 0.10.21.
* configure.in (AC_REPLACE_FUNCS): Add strncasecmp.
Tue Jun 18 15:11:01 1996 Ulrich Drepper <[email protected]>
* acconfig.h (PAGE_WIDTH): Define to 79. This allows even in
Emacs nice looking lines.
* aclocal.m4 (md_PATH_PROG): remove macro.
(ud_PATH_PROG_WITH_TEST): New macro. Similar to AC_PATH_PROG, only
that an additional, user-given test is performed before a program
is accepted.
Rewrite all tests for msgfmt and xgettext to use
ud_PATH_PROG_WITH_TEST to make sure no XView versions are used.
* configure.in (ACLOCAL_VERSION): Determine version number in
aclocal.m4 file which is used in misc/gettextize.
(VERSION): Bump to 0.10.20.
Fri Jun 14 04:07:10 1996 Ulrich Drepper <[email protected]>
* configure.in (VERSION): Bump to 0.10.19.
Thu Jun 13 15:19:45 1996 Ulrich Drepper <[email protected]>
* configure.in (VERSION): Bump to 0.10.18.
Tue Jun 11 15:02:49 1996 Ulrich Drepper <[email protected]>
* configure.in (ALL_LINGUAS): Add `sl' for Slowenian.