-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
1973 lines (1291 loc) · 59.3 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
2015-02-10 Daiki Ueno <[email protected]>
* THANKS: Update.
2015-02-06 Daiki Ueno <[email protected]>
* THANKS: Update.
2015-01-23 Daiki Ueno <[email protected]>
build: Update libtool files to 2.4.5
* m4/libtool.m4: Update from libtool-2.4.5, with modifications.
2008-04-06 Bruno Haible <[email protected]>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: Likewise.
* m4/ltversion.m4: Likewise.
* build-aux/ltmain.sh: Likewise.
2015-01-21 Daiki Ueno <[email protected]>
* THANKS: Update.
2015-01-04 Daiki Ueno <[email protected]>
* THANKS: Update.
2014-12-25 Daiki Ueno <[email protected]>
* build-aux/texinfo.tex: Update to 2014-12-03.16. Needed because
the original texinfo does not allow @heading usage inside
@enumeration and texi2dvi fails due to this.
2014-12-24 Daiki Ueno <[email protected]>
* gettext 0.19.4 released.
2014-12-24 Daiki Ueno <[email protected]>
configure: Also distribute lzip-compressed tarballs
* configure.ac (AM_INIT_AUTOMAKE): Add dist-lzip.
2014-12-16 Daiki Ueno <[email protected]>
* m4/init-package-version.m4: Remove unused file. The package
name and version number are now obtained from git-version-gen.
2014-12-10 Daiki Ueno <[email protected]>
* autogen.sh: Copy intl.m4 and po.m4 to gettext-tools, if Gnulib's
version are older.
2014-12-10 Daiki Ueno <[email protected]>
* THANKS: Add contributors since 0.18.2.
2014-12-03 Daiki Ueno <[email protected]>
autogen.sh: Fix typo
* autogen.sh: Fix typo: geneating -> generating.
2014-12-01 Daiki Ueno <[email protected]>
build: Update libtool files to 2.4.4
* m4/libtool.m4: Update from libtool-2.4.4, with modifications.
2008-04-06 Bruno Haible <[email protected]>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: Likewise.
* m4/ltversion.m4: Likewise.
* build-aux/ltmain.sh: Likewise.
2014-11-28 Daiki Ueno <[email protected]>
build: Update libtool files to 2.4.3
* m4/libtool.m4: Update from libtool-2.4.3, with modifications.
2008-04-06 Bruno Haible <[email protected]>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: Likewise.
* m4/ltsuger.m4: Likewise.
* m4/ltversion.m4: Likewise.
* m4/lt~obsolete.m4: Likewise.
* build-aux/ltmain.sh: Likewise.
2014-11-18 Yaakov Selkowitz <[email protected]>
build: Fix autogen.sh --skip-gnulib after fbf4e276
* Makefile.am (EXTRA_DIST): Add build-aux/git-version-gen.
2014-10-15 Daiki Ueno <[email protected]>
* gettext 0.19.3 released.
2014-07-16 Daiki Ueno <[email protected]>
* Makefile.am (distcheck-hook): Add back localename.c check.
2014-07-14 Daiki Ueno <[email protected]>
* gettext 0.19.2 released.
2014-07-14 Daiki Ueno <[email protected]>
build: Work around undefined _GL_ATTRIBUTE_PURE in libintl
* Makefile.am (distcheck-hook): Ignore the difference between our
localename.c and the latest Gnulib's, which utilizes
_GL_ATTRIBUTE_PURE not available from libintl. This is a
temporary fix for the 0.19.2 release and should be reverted once
it is fixed either in gettext or Gnulib.
2014-06-10 Daiki Ueno <[email protected]>
* gettext 0.19.1 released.
2014-06-06 Daiki Ueno <[email protected]>
autogen.sh: Use xz-compressed archive tarball
* autogen.sh: Fetch archive.dir-latest.tar.xz instead of .tar.gz.
2014-06-04 Jim Meyering <[email protected]> (tiny change)
configure: also distribute xz-compressed tarballs
* configure.ac (AM_INIT_AUTOMAKE): Add dist-xz, so that xz-compressed
.tar.xz tarballs will be distributed alongside .tar.gz ones.
2014-06-02 Daiki Ueno <[email protected]>
* gettext 0.19 released.
2014-05-04 Jehan <[email protected]> (tiny change)
configure: require automake >= 1.13
Macro AM_EXTRA_RECURSIVE_TARGETS defined in Automake 1.13.
* configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.13 or later.
2014-04-22 Daiki Ueno <[email protected]>
m4: Apply NM detection fix from Libtool
2013-04-28 Peter Rosin <[email protected]>
libtool: break all the way out when a good nm is found
* m4/libtool.m4 (LT_PATH_NM): Break all the way out on a good
match.
2014-04-22 Daiki Ueno <[email protected]>
m4: Revert commit d6690cc7 to libtool.m4
Reported by Benjamin Gilbert at:
<https://savannah.gnu.org/bugs/?41203>
With recent libtool, this patch did nothing but fix the output
message of configure.
* m4/libtool.m4: Remove the special handling of NM detection when
cross-compiling mingw32 on cygwin.
2014-04-22 Daiki Ueno <[email protected]>
build: Use git-version-gen intead of version.sh
* version.sh: Remove.
* autogen.sh: Import git-version-gen from Gnulib.
* Makefile.am (EXTRA_DIST): Remove version.sh and add
$(top_srcdir)/.version.
(BUILT_SOURCES): Add $(top_srcdir)/.version.
($(top_srcdir)/.version): New rule.
(dist-hook): New rule.
* configure.ac: Use git-version-gen in AC_INIT.
2014-04-21 Daiki Ueno <[email protected]>
autogen.sh: Split the regeneration of data files into update.sh
* autogen.sh: Separate out PO files update logic to...
* update-po.sh: ...here.
* Makefile.am (EXTRA_DIST): Add update-po.sh.
2014-04-17 Daiki Ueno <[email protected]>
* autogen.sh: Use included gettext-tools for bootstrap
To regenerate POT files, autogen.sh had an implicit dependency on
gettext-tools installed on system. This prohibited to use any new
features in our examples. Let autogen.sh use included version of
gettext-tools, by prepending $builddir to the PATH.
2014-04-07 Daiki Ueno <[email protected]>
* autogen.sh: Error out when gnulib-tool exit with non-zero.
2013-12-17 Daiki Ueno <[email protected]>
Add missing extern-inline.m4 into archive.
Problem reported by Reuben Thomas in:
<https://lists.gnu.org/archive/html/bug-gettext/2013-12/msg00010.html>.
* Makefile.am (distcheck-hook): Check extern-inline.m4.
2013-08-13 Michele Locati <[email protected]> (tiny change)
* windows/gettext.rc: Update copyright year.
2013-08-08 Daiki Ueno <[email protected]>
* .dir-locals.el: New file to force spaces instead of tabs in C
and shell-script files.
2013-08-07 Daiki Ueno <[email protected]>
* NEWS: Add entry for 0.18.4. Mention GSettings schema file support.
2013-07-10 Daiki Ueno <[email protected]>
gettext-tools: convert tests to use init.sh from Gnulib
* autogen.sh: Copy tests/init.sh from Gnulib into gettext-tools/tests.
2013-07-07 Daiki Ueno <[email protected]>
* NEWS: Mention libasprintf change and Tcl bug fix.
2013-06-26 Daiki Ueno <[email protected]>
* autogen.sh: Mention GNULIB_TOOL again for off-line bootstrap.
2013-06-17 Daiki Ueno <[email protected]>
Embed Gnulib using git submodule.
* autogen.sh: Port git submodule update code from the 'bootstrap'
script in Gnulib and respect the GNULIB_SRCDIR envvar.
(cleanup_gnulib): New function borrowed from Gnulib.
(git_modules_config): Likewise.
(gnulib_path): New variable.
2013-06-13 Daiki Ueno <[email protected]>
* NEWS: Document more new features. Mention Glade msgctxt support
and msginit portability fix, and note that JavaScript support is
only partial.
2013-06-11 Daiki Ueno <[email protected]>
* NEWS: Mention that future 'gettextize' will require Automake 1.10.
Suggested by Stefano Lattarini.
2013-06-08 Stefano Lattarini <[email protected]> (tiny change)
build: drop the 'fixacocal' auxiliary script
The comments in that script state that its use is only required to
work around issues in aclocal from Automake 1.10, while the rest
of the Gettext build infrastructure assumes Automake >= 1.11 anyway.
* autogen.sh: Drop invocations of 'fixaclocal', simply invoke the
'aclocal' program directly.
* build-aux/fixaclocal: Remove.
* Makefile.am (EXTRA_DIST): Stop distributing it.
(ACLOCAL): Drop redefinition in function of 'fixaclocal'.
* gettext-runtime/Makefile.am (ACLOCAL): Likewise.
* gettext-runtime/libasprintf/Makefile.am (ACLOCAL): Likewise.
* gettext-tools/Makefile.am (ACLOCAL): Likewise.
* gettext-tools/examples/Makefile.am (ACLOCAL): Likewise.
2013-06-04 Daiki Ueno <[email protected]>
Support for Vala.
* NEWS: Mention Vala support.
2013-05-29 Stefano Lattarini <[email protected]> (tiny change)
* configure.ac (AM_INIT_AUTOMAKE): Add 'parallel-tests' option.
Require Automake 1.11.1 or later, so that the 'parallel-tests'
will be certainly available.
(AC_INIT): Require Autoconf 2.62 or later; that is the minimal
version supported by Automake 1.11.1 or later.
* autogen.sh: Update version number requirement for Autoconf.
2013-05-20 Pavel Kharitonov <[email protected]> (tiny change)
Add --previous option to msgattrib.
* NEWS: Mention --previous msgattrib option.
2013-05-13 Daiki Ueno <[email protected]>
Fix bootstrap error on Mac OS X.
* autogen.sh (GNULIB_MODULES_LIBGETTEXTPO): Add strchrnul.
2013-05-02 Daiki Ueno <[email protected]>
* autogen.sh: Retrieve archive.dir.tar from FTP when bootstrapping.
Reported by Stefano Lattarini in
<https://lists.gnu.org/archive/html/bug-gettext/2012-12/msg00058.html>
2013-04-26 Daiki Ueno <[email protected]>
* NEWS: Mention Python brace format.
2013-04-17 Daiki Ueno <[email protected]>
* NEWS: Mention JavaScript support.
2013-04-11 Daiki Ueno <[email protected]>
* NEWS: Mention Lua support.
2013-03-06 Daiki Ueno <[email protected]>
* AUTHORS: Update from fencepost.gnu.org:/gd/gnuorg/copyright.list.
2013-01-17 Daiki Ueno <[email protected]>
Fix link errors related to C99-style extern inline.
Reported by Sam Thursfield <[email protected]>.
* autogen.sh (GNULIB_MODULES_LIBASPRINTF): Add xsize.
2012-12-25 Daiki Ueno <[email protected]>
* gettext-0.18.2 released.
2012-12-25 Daiki Ueno <[email protected]>
* version.sh: Bump to 0.18.2.
* autogen.sh: Record the gnulib version that is being used.
* NEWS: Update the release date of 0.18.2. Reformat "Autoconf
macros" change.
2012-12-21 Daiki Ueno <[email protected]>
Fix W64 build errors.
* autogen.sh (GNULIB_MODULES_LIBASPRINTF): Add extern-inline, for
the last xsize.h update.
(GNULIB_MODULES_TOOLS_FOR_SRC_COMMON_DEPENDENCIES): Add locale,
not to have copies of locale.h in both libgrep and gnulib-lib.
(GNULIB_MODULES_LIBGETTEXTPO): Add close.
2012-12-08 Daiki Ueno <[email protected]>
* autogen.sh: Ignore libunistring tests which are known to fail.
(GNULIB_MODULES_TOOLS_LIBUNISTRING_TESTS): New variable.
2012-12-08 Daiki Ueno <[email protected]>
* NEWS: Mention that autoconf 2.60 is required.
Suggested by Bruno Haible <[email protected]>.
2012-04-29 Bruno Haible <[email protected]>
Allow use of autoconf-2.69 and automake-1.12.
* autogen.sh: Update comments.
2012-02-18 Bruno Haible <[email protected]>
Improve ensurance that intmax_t gets defined in libasprintf.
* autogen.sh: Create gettext-runtime/libasprintf/gnulib-m4/intmax_t.m4,
not gettext-runtime/m4/intmax_t.m4.
* Makefile.am (distcheck-hook): Update.
2012-02-18 Bruno Haible <[email protected]>
* Makefile.am (distcheck-hook): Update after gnulib changed.
2012-01-26 Bruno Haible <[email protected]>
Modernize quoting.
* NEWS: Quote 'like this', not `like this', as per the recent change
to the GNU coding standards.
* INSTALL: Process through sed -e "s/\`\([^']*\)'/‘\1’/g"
2011-10-18 Bruno Haible <[email protected]>
* m4/libtool.m4: Update from libtool-2.4.2, with modifications.
2009-04-23 Bruno Haible <[email protected]>
Fix recognition of "nm" command.
* m4/libtool.m4 (LT_PATH_NM): Try "nm" program also when
compiling for mingw in a cygwin environment.
2008-04-06 Bruno Haible <[email protected]>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: Likewise.
* m4/ltversion.m4: Likewise.
* build-aux/ltmain.sh: Likewise.
2011-09-12 Bruno Haible <[email protected]>
Update after gnulib changed.
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC): Add opendir, readdir,
closedir.
2011-07-12 Bruno Haible <[email protected]>
Update after gnulib changed.
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC_COMMON_DEPENDENCIES): Update
module names.
2011-06-08 Bruno Haible <[email protected]>
Fix a link error due to rpl_wcrtomb on Solaris 9.
* autogen.sh: Pass the option --witness-c-macro to the gnulib-tool
invocation for libgrep.
2011-06-05 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_LIBGREP): Add mbrlen.
2011-06-04 Bruno Haible <[email protected]>
Ensure intmax_t gets defined in libasprintf.
* autogen.sh: Create gettext-runtime/m4/intmax_t.m4, copied from
gnulib.
* Makefile.am (distcheck-hook): Check also intmax_t.m4.
2011-06-03 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_LIBASPRINTF): Add verify.
* Makefile.am (distcheck-hook): Check also verify.h.
2011-06-03 Bruno Haible <[email protected]>
Copyright: Use LGPL 2.1 instead of LGPL 2.0.
* os2/iconv/iconv.*: Update copyright header.
* Makefile.am (distcheck-hook): Update.
2011-02-12 Bruno Haible <[email protected]>
Use gnulib's setlocale in all the programs.
* autogen.sh (GNULIB_MODULES_RUNTIME_FOR_SRC,
GNULIB_MODULES_TOOLS_FOR_SRC): Add setlocale.
2011-02-12 Bruno Haible <[email protected]>
Update after gnulib changed.
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC): Add wctype-h, remove
wctype.
2011-02-12 Bruno Haible <[email protected]>
Use u8_mbtoucr instead of u8_mbtouc in some places.
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC,
GNULIB_MODULES_LIBGETTEXTPO): Add unistr/u8-mbtoucr.
2011-01-28 Bruno Haible <[email protected]>
Add a comment.
* m4/woe32-dll.m4: Add a reference to the woe32dll writeup.
2010-12-10 Bruno Haible <[email protected]>
Update after gnulib changed.
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC): Add spawn-pipe, remove
pipe.
2010-09-24 Bruno Haible <[email protected]>
* m4/libtool.m4: Update from libtool-2.4, with modifications.
2009-04-23 Bruno Haible <[email protected]>
Fix recognition of "nm" command.
* m4/libtool.m4 (LT_PATH_NM): Try "nm" program also when
compiling for mingw in a cygwin environment.
2008-04-06 Bruno Haible <[email protected]>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltversion.m4: Update from libtool-2.4.
* build-aux/ltmain.sh: Likewise.
2010-09-04 Bruno Haible <[email protected]>
Simplify use of gnulib-tool now that gnulib-tool --import works better.
* autogen.sh: Don't remove gnulib-cache.m4 before running gnulib-tool.
2010-07-31 Bruno Haible <[email protected]>
Use new ansi-c++.m4 from gnulib.
* autogen.sh (GNULIB_MODULES_RUNTIME_OTHER, GNULIB_MODULES_TOOLS_OTHER):
Add ansi-c++-opt.
Reported at <https://savannah.gnu.org/bugs/?30607>.
2010-06-06 Bruno Haible <[email protected]>
New options --with-xz and --with-bzip2 for compressing the archive.
* DEPENDENCIES: Correct placement of entries for 'tar' and 'gzip'. Add
entries for 'bzip2' and 'xz'.
2010-06-04 Bruno Haible <[email protected]>
* m4/libtool.m4: Update from libtool-2.2.8, with modifications.
2009-04-23 Bruno Haible <[email protected]>
Fix recognition of "nm" command.
* m4/libtool.m4 (LT_PATH_NM): Try "nm" program also when
compiling for mingw in a cygwin environment.
2008-04-06 Bruno Haible <[email protected]>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: Update from libtool-2.2.8.
* m4/ltversion.m4: Likewise.
* m4/lt~obsolete.m4: Likewise.
* build-aux/ltmain.sh: Likewise.
2010-06-04 Bruno Haible <[email protected]>
* gettext-0.18.1 released.
2010-06-04 Bruno Haible <[email protected]>
* DEPENDENCIES: Add entries for 'tar' and 'gzip'.
2010-06-04 Bruno Haible <[email protected]>
* autogen.sh: For libgrep, don't use --avoid of modules with
applicability 'all'.
Reported by Ryan Schmidt <[email protected]>.
2010-06-03 Bruno Haible <[email protected]>
* README: Remove lots of old cruft. Mention the translators as the
third audience.
2010-06-03 Bruno Haible <[email protected]>
* version.sh: Bump to 0.18.1.
* autogen.sh: Record the gnulib version that is being used.
2010-06-03 Bruno Haible <[email protected]>
Deprecate the --with-cvs option.
* DEPENDENCIES: Update entries for git, CVS. Remove entry for RCS.
* PACKAGING: Update comments about archive.*.tar.gz.
2010-05-19 Bruno Haible <[email protected]>
Link with libunistring, if it exists.
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC,
GNULIB_MODULES_LIBGETTEXTPO): Add libunistring-optional.
* DEPENDENCIES: Mention optional dependency to GNU libunistring.
2010-05-22 Bruno Haible <[email protected]>
* README.woe32: Explain how to build 64-bit mode binaries.
Reported by Rob <[email protected]>.
2010-05-24 Bruno Haible <[email protected]>
Use the newest regex module from gnulib.
* autogen.sh: Add another gnulib-tool invocation for libgrep.
(GNULIB_MODULES_TOOLS_FOR_SRC_COMMON_DEPENDENCIES): New variable.
(GNULIB_MODULES_TOOLS_FOR_LIBGREP): Change value.
Pass option -I libgrep/gnulib-m4 to 'aclocal'.
* Makefile.am (distcheck-hook): Don't compare memchr.c.
2010-05-23 Bruno Haible <[email protected]>
Do regex matching purely with regex, not regex + dfa + kwset.
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_LIBGREP): Remove hard-locale.
2010-05-15 Bruno Haible <[email protected]>
List the build dependencies.
* DEPENDENCIES: Clarify that 'git' is also a build dependencies.
List the non-trivial build dependencies.
Reported by Santiago Vila <[email protected]>.
2010-05-09 Bruno Haible <[email protected]>
* gettext-0.18 released.
2010-05-09 Bruno Haible <[email protected]>
* version.sh: Bump to 0.18.
* windows/gettext.rc: Update year.
* autogen.sh: Record the gnulib version that is being used.
2010-05-08 Bruno Haible <[email protected]>
* NEWS: Mention the PO mode changes.
2010-04-02 Bruno Haible <[email protected]>
Remove autoconf-lib-link directory, obsoleted by gnulib.
* Makefile.am (SUBDIRS): Remove autoconf-lib-link.
($(srcdir)/configure): Don't depend on autoconf-lib-link/configure.ac.
(distcheck-hook): Remove checks of lib-*.m4 and config.rpath.
* autogen.sh (GNULIB_MODULES_RUNTIME_FOR_SRC): Add havelib.
Remove configuration of autoconf-lib-link subdirectory. Remove
"-I ../autoconf-lib-link/m4" option to aclocal. Don't copy
config.rpath.
* configure.ac (AC_CONFIG_SUBDIRS): Remove autoconf-lib-link.
Don't recurse into autoconf-lib-link.
2010-03-30 Bruno Haible <[email protected]>
* README.woe32: Update for Cygwin 1.7.x.
2010-03-28 Bruno Haible <[email protected]>
* NEWS: Deprecate the use of AM_GNU_GETTEXT with 'no-libtool' argument
and 'gettextize --intl'.
2010-03-28 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC): Add fnmatch, remove
fnmatch-posix.
* autogen.sh (GNULIB_MODULES_RUNTIME_FOR_SRC,
GNULIB_MODULES_TOOLS_FOR_SRC, GNULIB_MODULES_LIBGETTEXTPO): Add stdlib,
remove exit.
2010-03-13 Bruno Haible <[email protected]>
* NEWS: Mention the --color and --style options on many programs.
2010-01-19 Bruno Haible <[email protected]>
* AUTHORS: Update from fencepost.gnu.org:/gd/gnuorg/copyright.list.
2010-01-11 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC,
GNULIB_MODULES_LIBGETTEXTPO): Replace ucs4-utf8, utf8-ucs4, utf16-ucs4
with their modern equivalents.
2009-12-26 Bruno Haible <[email protected]>
* windows/gettext.rc: Update.
2009-12-26 Bruno Haible <[email protected]>
* NEWS: Mention the use of the thread-specific locale on MacOS X.
2009-12-25 Bruno Haible <[email protected]>
* Makefile.am (distcheck-hook): Compare fcntl-o.m4 instead of
fcntl_h.m4.
* PACKAGING: Mention fcntl-o.m4 instead of fcntl_h.m4.
2009-12-12 Bruno Haible <[email protected]>
* AUTHORS: Untabify.
* README: Untabify.
* THANKS: Untabify.
2009-12-01 Bruno Haible <[email protected]>
* m4/init-package-version.m4 (gl_INIT_PACKAGE): Set AC_PACKAGE_NAME.
2009-11-30 Bruno Haible <[email protected]>
* autogen.sh: Treat gettext-runtime/libasprintf before gettext-runtime.
Treat gettext-tools/examples before gettext-tools.
2009-10-18 Bruno Haible <[email protected]>
* Makefile.am (distcheck-hook): Compare fcntl_h.m4.
* PACKAGING: Mention also fcntl_h.m4.
2009-09-27 Bruno Haible <[email protected]>
* NEWS: Mention configure options --without-cvs and --with-git.
* PACKAGING: Mention archive.*.tar.gz instead of archive.tar.gz.
* DEPENDENCIES: Mention also git.
2009-09-01 Bruno Haible <[email protected]>
* README.woe32: Put the -mno-cygwin option into CC and CXX.
Recommended by Paolo Bonzini and Eric Blake.
2009-08-30 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC): Add xstriconveh.
2009-08-30 Bruno Haible <[email protected]>
* configure.ac (AC_PREREQ): Require at least autoconf 2.59.
2009-08-15 Bruno Haible <[email protected]>
Stop using gnulib module 'strdup'.
* Makefile.am (distcheck-hook): Don't compare strdup.c.
2009-08-14 Bruno Haible <[email protected]>
* autogen.sh: Invoke gnulib-tool also for gettext-runtime/libasprintf.
(GNULIB_MODULES_LIBASPRINTF, GNULIB_MODULES_LIBASPRINTF_OTHER): New
variables.
Update aclocal options for gettext-runtime/libasprintf.
* Makefile.am (distcheck-hook): Don't compare eoverflow.m4. Update
comparison of alloca.in.h.
2009-08-14 Bruno Haible <[email protected]>
Remove automatically copied files from version control.
* autogen.sh (GNULIB_MODULES_TOOLS_OTHER): Add csharpcomp-script,
csharpexec-script, javacomp-script, javaexec-script.
* build-aux/csharpcomp.sh.in: Remove file.
* build-aux/csharpexec.sh.in: Remove file.
* build-aux/javacomp.sh.in: Remove file.
* build-aux/javaexec.sh.in: Remove file.
2009-08-14 Bruno Haible <[email protected]>
Remove automatically copied files from version control.
* autogen.sh: Fetch config.guess, config.sub.
* build-aux/config.guess: Remove file.
* build-aux/config.sub: Remove file.
Remove automatically copied files from version control.
* autogen.sh: Invoke automake with options --add-missing --copy.
* build-aux/compile: Remove file.
* build-aux/depcomp: Remove file.
* build-aux/elisp-comp: Remove file.
* build-aux/install-sh: Remove file.
* build-aux/mdate-sh: Remove file.
* build-aux/missing: Remove file.
* build-aux/ylwrap: Remove file.
2009-08-14 Bruno Haible <[email protected]>
Remove automatically generated files from version control.
* autogen.sh: If --quick was not given, rebuild autoconfiguration of
tests, PO files, manual pages, documentation, test files.
2009-08-14 Bruno Haible <[email protected]>
* autogen.sh: Update comments.
2009-08-14 Bruno Haible <[email protected]>
* autogen.sh: Create gettext-tools/intl directory before running
automake.
2009-08-12 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_RUNTIME_FOR_SRC,
GNULIB_MODULES_TOOLS_FOR_SRC): Use getopt-gnu instead of getopt.
2009-08-10 Bruno Haible <[email protected]>
* autogen.sh: Avoid the 'hash-tests' module. It corresponds to an
incompatible 'hash' module.
2009-08-04 Bruno Haible <[email protected]>
Port msgfilter to Woe32 platforms.
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC): Add pipe-filter-ii.
2009-08-03 Bruno Haible <[email protected]>
* autogen.sh: Remove statements to fix permissions. Now fixed in git.
2009-05-23 Bruno Haible <[email protected]>
* configure.ac (AM_INIT_AUTOMAKE): Add 'silent-rules' option.
2009-05-23 Bruno Haible <[email protected]>
* m4/init-package-version.m4: New file.
* configure.ac: Invoke gl_INIT_PACKAGE. Use the preferred form of
AM_INIT_AUTOMAKE.
* Makefile.am (ACLOCAL_AMFLAGS): New variable.
* autogen.sh: Update aclocal invocation.
2009-05-21 Bruno Haible <[email protected]>
Require automake >= 1.11.
* autogen.sh: Update comment.
2009-05-21 Bruno Haible <[email protected]>
Support automake 1.11.
* m4/fixautomake.m4 (FIX_MAKEFILE_TOPDIR_DISTRIB): Update for
automake 1.11.
* autogen.sh: Update comment.
2009-05-21 Bruno Haible <[email protected]>
Assume automake >= 1.10.2.
* m4/fixautomake.m4 (FIX_MAKEFILE_COMPILE, FIX_MAKEFILE_INFO): Remove
macros.
2009-04-23 Bruno Haible <[email protected]>
Fix recognition of "nm" command.
* m4/libtool.m4 (LT_PATH_NM): Try "nm" program also when compiling for
mingw in a cygwin environment.
2009-04-23 Bruno Haible <[email protected]>
* m4/libtool.m4: Fix recognition of 'link' command.
2009-01-26 Peter Rosin <[email protected]>
Don't settle for any dumpbin/link program as name lister.
* m4/libtool.m4 (LT_PATH_NM): When locating dumpbin or
link -dump, check if they appear to really be capable of name
listing, in order to eliminate e.g. link from coreutils. This
makes the name lister decision fall back on nm as the default
if no acceptable candidate is found, which mainly happens on
(arguably broken) cross compiles.
2009-03-14 Bruno Haible <[email protected]>
* autogen.sh: Checkout gnulib using 'git' instead of 'cvs'.
2009-01-14 Bruno Haible <[email protected]>
* configure.ac: More consistent m4 quoting.
2008-12-07 Bruno Haible <[email protected]>
* build-aux/fixaclocal: Update for automake-1.10.2.
2008-10-01 Ralf Wildenhues <[email protected]>
* m4/libtool.m4 (install_override_mode): New LT_DECL.
(_LT_SYS_DYNAMIC_LINKER) [hpux9*, hpux10*, hpux11*]: Set it.
* build-aux/ltmain.sh (func_mode_install): Build a second command line,
$install_shared_prog, for the installation of the shared library.
Override resp. set the permission mode if install_override_mode is
nonempty.
2008-10-04 Bruno Haible <[email protected]>
* autogen.sh: Fix execute permissions of some files.
2008-09-28 Bruno Haible <[email protected]>
* build-aux/ltmain.sh (func_emit_cwrapperexe_src): On mingw,
preprocess the argument vector through prepare_spawn.
2008-09-27 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_RUNTIME_FOR_SRC): Add sigpipe, stdio.
(GNULIB_MODULES_TOOLS_FOR_SRC): Add sigpipe, stdio, sys_select, write.
(GNULIB_MODULES_LIBGETTEXTPO): Add sigpipe, stdio.
2008-09-27 Bruno Haible <[email protected]>
* build-aux/config.guess: Update to GNU version 2008-09-08.
* build-aux/config.sub: Likewise.
2008-09-21 Bruno Haible <[email protected]>
* build-aux/fixaclocal: Adapt for newer versions of 'aclocal'.
2008-09-14 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC,
GNULIB_MODULES_LIBGETTEXTPO): Add strerror.
2008-09-07 Bruno Haible <[email protected]>
* m4/libtool.m4: Update from libtool-2.2.6, with modifications:
2008-04-06 Bruno Haible <[email protected]>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: Update from libtool-2.2.6.
* m4/ltsugar.m4: Likewise.
* m4/ltversion.m4: Likewise.
* build-aux/ltmain.sh: Likewise.
2008-09-01 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC,
GNULIB_MODULES_LIBGETTEXTPO): Add xconcat-filename.
2008-08-31 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC): Add sigprocmask.
2008-08-30 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_LIBGETTEXTPO): Add open.
2008-08-17 Bruno Haible <[email protected]>
* Makefile.am (distcheck-hook): Also compare threadlib.m4.
2008-08-14 Bruno Haible <[email protected]>
* Makefile.am (distcheck-hook): Update check of lock.h and lock.c.
2008-05-22 Bruno Haible <[email protected]>
* README.woe32: Add a note about the libiconv dependency.
Reported by Marko Lindqvist <[email protected]>.
2008-05-18 Bruno Haible <[email protected]>
* m4/libtool.m4: Update from libtool-2.2.4, with modifications:
2008-04-06 Bruno Haible <[email protected]>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: Update from libtool-2.2.4.
* m4/ltversion.m4: Likewise.
* m4/lt~obsolete.m4: Likewise.
* build-aux/ltmain.sh: Likewise.
2008-05-10 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC): Replace linebreak with
unilbrk/ulc-width-linebreaks.
(GNULIB_MODULES_LIBGETTEXTPO): Likewise.
2008-04-20 Bruno Haible <[email protected]>
* m4/libtool.m4: Update from libtool-2.2.2, with modifications:
2008-04-06 Bruno Haible <[email protected]>
* m4/libtool.m4 (LT_INIT): When setting LIBTOOL, use
CONFIG_SHELL; don't assume that the Makefile.in will set SHELL
to ${CONFIG_SHELL}.
* m4/ltoptions.m4: New file, from libtool-2.2.2.
* m4/ltsugar.m4: New file, from libtool-2.2.2.
* m4/ltversion.m4: New file, from libtool-2.2.2.
* m4/lt~obsolete.m4: New file, from libtool-2.2.2.
* build-aux/ltmain.sh: Update from libtool-2.2.2.
2007-12-24 Bruno Haible <[email protected]>
* version.sh: Bump to 0.18-pre1.
2007-11-10 Bruno Haible <[email protected]>
* Makefile.am (distcheck-hook): Add a check for eoverflow.m4.
2007-11-07 Bruno Haible <[email protected]>
* gettext-0.17 released.
2007-11-04 Bruno Haible <[email protected]>
* windows/windres-options (sed_extract_major, sed_extract_minor,
sed_extract_subminor): Use 'c' command instead of 'a' command. Needed
for GNU sed 3.02.
2007-11-03 Bruno Haible <[email protected]>
* Makefile.am (distcheck-hook): Add another check for vasnprintf.c.
2007-11-01 Bruno Haible <[email protected]>
* version.sh: Bump version number to 0.17.
2007-10-31 Bruno Haible <[email protected]>
* Makefile.am (distcheck-hook): Exclude copyright header when comparing
localename.c, relocatable.h, relocatable.c.
2007-10-31 Bruno Haible <[email protected]>
* PACKAGING: Remove ulonglong.m4.
* Makefile.am (distcheck-hook): Remove check of ulonglong.m4.
2007-10-26 Bruno Haible <[email protected]>
* m4/libtool.m4: Update, based on libtool-1.5.24.
* build-aux/ltmain.sh: Update, based on libtool-1.5.24.
2007-10-17 Bruno Haible <[email protected]>
* windows/windres-options (sed_extract_major, sed_extract_minor,
sed_extract_subminor): Use newlines instead of semicolons. Add a
newline also after the last command in a braced group.
Needed for GNU sed-3.02, which does not like "q}".
2007-10-17 Bruno Haible <[email protected]>
* README.woe32: Recommend to set PATH. Needed so that libiconv-2.dll
is found during autoconfiguration.
2007-10-07 Bruno Haible <[email protected]>
* COPYING: Replace with GPL 3.
* windows/gettext.rc (Comments): Update.
* Makefile.am (distcheck-hook): Update.
2007-10-06 Bruno Haible <[email protected]>
* autogen.sh (GNULIB_MODULES_TOOLS_FOR_SRC): Add open, fopen.
(GNULIB_MODULES_LIBGETTEXTPO): Add fopen.
Reported by Mark Moriarty <[email protected]>.
2007-10-06 Bruno Haible <[email protected]>
* build-aux/texinfo.tex: Upgrade to texinfo-4.11.
Needed because the original texinfo.tex does not support the
@documentencoding macro and the texinfo-4.11 texi2dvi then fails due to
this.
2007-10-05 Bruno Haible <[email protected]>
* Makefile.am (distcheck-hook): Update check of relocatable.h,
relocatable.c. Check alloca.in.h instead of alloca_.h. Remove check of
strdup.h.
2007-10-03 Bruno Haible <[email protected]>
* Makefile.am (EXTRA_DIST): Add build-aux/fixaclocal.
2007-10-03 Bruno Haible <[email protected]>
* INSTALL (Enabling Relocatability): New section, produced by
"LANG= LC_MESSAGES= LC_ALL= LANGUAGE= \
makeinfo --no-header --no-validate --output=... relocatable.texi".
(Relocatable Installation): Remove section.