Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

   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
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
2006-11-27  Bruno Haible  <bruno@clisp.org>

	* gettext-0.16.1 released.

2006-10-26  Bruno Haible  <bruno@clisp.org>

	* gettext-0.16 released.

2006-10-03  Bruno Haible  <bruno@clisp.org>

	* msgattrib-16: New file.
	* msgattrib-17: New file.
	* msgcat-15: New file.
	* msgcat-16: New file.
	* msgcmp-4: New file.
	* msgcomm-26: New file.
	* msgconv-6: New file.
	* msgfmt-16: New file.
	* msgmerge-19: New file.
	* msguniq-6: New file.
	* Makefile.am (TESTS): Add them.

2006-10-03  Bruno Haible  <bruno@clisp.org>

	* msgmerge-18: Invoke msgcmp with options --use-fuzzy and
	--use-untranslated.

2006-10-01  Bruno Haible  <bruno@clisp.org>

	* xgettext-perl-6: New file.
	* Makefile.am (TESTS): Add it.

2006-09-06  Bruno Haible  <bruno@clisp.org>

	* msgfmt-12: Update expected output.
	* format-c-3: Likewise.
	* format-c-4: Likewise.
	* format-c-5: Likewise.

2006-08-28  Bruno Haible  <bruno@clisp.org>

	* xgettext-scheme-2: New file.
	* Makefile.am (TESTS): Add it.

2006-08-16  Bruno Haible  <bruno@clisp.org>

	* plural-2: Use Japanese, not Hungarian, as a test case for nplurals=1.

2006-08-16  Bruno Haible  <bruno@clisp.org>

	* msgunfmt-2: New file.
	* Makefile.am (TESTS): Add it.

2006-08-01  Bruno Haible  <bruno@clisp.org>

	* msgmerge-compendium-6: New file.
	* mm-ko.ascii.pot: New file.
	* mm-ko.euc-kr.po: New file.
	* mm-ko-comp.euc-kr.po: New file.
	* Makefile.am (TESTS): Add msgmerge-compendium-6.
	(EXTRA_DIST): Add mm-ko.ascii.pot, mm-ko.euc-kr.po,
	mm-ko-comp.euc-kr.po.

2006-08-01  Bruno Haible  <bruno@clisp.org>

	* mm-viet.comp.po: Renamed from msgmerge-v.comp.po.
	* mm-viet.out: Renamed from msgmerge-v.out.
	* mm-viet.pot: msgmerge-v.pot.
	* msgmerge-compendium-5: Update.
	* Makefile.am (EXTRA_DIST): Update.

2006-08-04  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (TESTS): Really add msgfmt-qt-2.

2006-08-02  Bruno Haible  <bruno@clisp.org>

	* lang-c: Replace ../lib with ../gnulib-lib.
	* lang-c++: Likewise.
	* lang-objc: Likewise.

2006-07-30  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (AM_CPPFLAGS, *_LDADD*): Replace ../lib with
	../gnulib-lib.
	* lang-csharp (CSHARPCOMP, CSHARPEXEC): Remove lib/ from pathname.
	* lang-java (JAVACOMP, JAVAEXEC): Remove lib/ from pathname.

2006-07-25  Bruno Haible  <bruno@clisp.org>

	* Makefile.msvc: Remove file.
	* Makefile.am (EXTRA_DIST): Remove Makefile.msvc.

2006-07-25  Bruno Haible  <bruno@clisp.org>

	* Makefile.vms: Remove file.
	* Makefile.am (EXTRA_DIST): Remove Makefile.vms.

2006-07-21  Bruno Haible  <bruno@clisp.org>

	* gettext-0.15 released.

2006-07-21  Bruno Haible  <bruno@clisp.org>

	* gettext-4: Store the PO file under fr/, not fr_FR/. Needed on
	Solaris 7, because there the french locale is called fr, not fr_FR.

2006-07-21  Bruno Haible  <bruno@clisp.org>

	* gettext-6-prg.c: Enable the test only for glibc >= 2.3.
	* gettext-7-prg.c: Likewise.
	* gettext-6: Update.
	* gettext-7: Likewise.

2006-07-14  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (MOSTLYCLEANFILES): New variable.

2006-04-14  Bruno Haible  <bruno@clisp.org>

	Assume autoconf >= 2.60.
	* Makefile.am (localedir): Remove variable.

2006-06-21  Bruno Haible  <bruno@clisp.org>

	* xgettext-sh-5: New file.
	* Makefile.am (TESTS): Add it.

2006-06-17  Bruno Haible  <bruno@clisp.org>

	* recode-sr-latin-2 (LOCALE_JA_EUCJP): Determine locale name depending
	on the platform.
	Needed for NetBSD 3.0, where testlocale always succeeds. (On NetBSD,
	setlocale always works, but for invalid locales nl_locale(CODESET)
	returns "646".)

2006-06-17  Bruno Haible  <bruno@clisp.org>

	* gettext-4: Use a french locale instead of a german locale. Pass
	the locale name as an argument to gettext-4-prg.
	* gettext-4-prg.c (main): Use the locale name passed as argument.

2006-06-04  Bruno Haible  <bruno@clisp.org>

        * recode-sr-latin-2: Skip the test on MacOS X and BeOS.

2006-06-04  Bruno Haible  <bruno@clisp.org>

	* lang-php: Skip the test if php does not have the 'gettext' module
	built-in.

2006-06-04  Bruno Haible  <bruno@clisp.org>

	* lang-gawk: Require gawk-3.1.3 or newer.

2006-06-04  Bruno Haible  <bruno@clisp.org>

	Provide better SKIP explanations.
	* lang-pascal (UTF8_LOCALE_UNSUPPORTED): New variable.
	* lang-python-1: Likewise.
	* lang-python-2: Likewise.

2006-06-03  Bruno Haible  <bruno@clisp.org>

	* lang-php: Fix version recognition for PHP 4.

2006-06-03  Bruno Haible  <bruno@clisp.org>

	Explain why tests are skipped.
	* Makefile.am (TESTS_ENVIRONMENT): Also define JAVA_CHOICE, BUILDJAVA,
	CSHARPCHOICE, BUILDCSHARP.
	* testlocale.c (main): Don't print "Couldn't set locale.".
	* format-c-5-prg.c (main): Likewise.
	* format-c-5: Print a message explaining why the test is skipped.
	* gettext-3: Likewise.
	* gettext-4: Likewise.
	* gettext-5: Likewise.
	* gettext-6: Likewise.
	* gettext-7: Likewise.
	* lang-bash: Likewise.
	* lang-clisp: Likewise.
	* lang-csharp: Likewise.
	* lang-gawk: Likewise.
	* lang-guile: Likewise.
	* lang-java: Likewise.
	* lang-librep: Likewise.
	* lang-pascal: Likewise.
	* lang-perl-1: Likewise.
	* lang-perl-2: Likewise.
	* lang-php: Likewise.
	* lang-python-1: Likewise.
	* lang-python-2: Likewise.
	* lang-sh: Likewise.
	* lang-smalltalk: Likewise.
	* lang-tcl: Likewise.
	* msgfilter-1: Likewise.
	* msgfilter-2: Likewise.
	* msgfilter-3: Likewise.
	* msgfilter-4: Likewise.
	* msgunfmt-csharp-1: Likewise.
	* msgunfmt-java-1: Likewise.
	* msgunfmt-tcl-1: Likewise.
	* recode-sr-latin-1: Likewise.
	* recode-sr-latin-2: Likewise.
	* xgettext-glade-1: Likewise.
	* xgettext-glade-2: Likewise.
	* xgettext-glade-3: Likewise.
	* lang-c: Print a message explaining why the test is skipped. Don't
	print "Couldn't set locale.".
	* lang-c++: Likewise.
	* lang-objc: Likewise.

2006-05-31  Bruno Haible  <bruno@clisp.org>

	* xgettext-ycp-3: New file, from Karl Eichwalder <ke@suse.de>.
	* Makefile.am (TESTS): Add it.

2006-05-16  Bruno Haible  <bruno@clisp.org>

	* gettext-4-prg.c: Set the LC_ALL environment variable, not just LANG.
	Needed on non-glibc Unix systems where !HAVE_LOCALE_NULL and
	_nl_locale_name_default() = "C".

2006-05-14  Bruno Haible  <bruno@clisp.org>

	* xgettext-php-2: New file.
	* Makefile.am (TESTS): Add it.

2006-04-02  Bruno Haible  <bruno@clisp.org>

	* tstgettext.c: Include propername.h.
	(main): Call proper_name. Bump copyright year.
	* tstngettext.c: Include propername.h.
	(main): Call proper_name. Bump copyright year.

2006-03-28  Bruno Haible  <bruno@clisp.org>

	* recode-sr-latin-1: New file.
	* recode-sr-latin-2: New file.
	* msgfilter-sr-latin-1: New file.
	* Makefile.am (TESTS): Add them.
	(TESTS_ENVIRONMENT): Also set the RECODE variable.

2006-03-19  Bruno Haible  <bruno@clisp.org>

	* xgettext-9: New file.
	* Makefile.am (TESTS): Add it.

2006-03-16  Bruno Haible  <bruno@clisp.org>

	* msggrep-8: New file.
	* Makefile.am (TESTS): Add it.

2006-03-16  Bruno Haible  <bruno@clisp.org>

	* xgettext-c-15: New file.
	* Makefile.am (TESTS): Add it.

2006-03-11  Bruno Haible  <bruno@clisp.org>

	* lang-c: Put the -I flags before ${CFLAGS} ${CPPFLAGS}.
	* lang-c++: Likewise.
	* lang-objc: Likewise.

2006-03-11  Bruno Haible  <bruno@clisp.org>

	* format-python-1: Hide xgettext warnings.

2006-03-11  Bruno Haible  <bruno@clisp.org>

	Make the gettext-4 test work on MacOS X.
	* gettext-4-prg.c: Include xsetenv.h instead of setenv.h.
	(main): Clear also the LC_ALL, LC_MESSAGES, LC_CTYPE, LANG environment
	variables. Set LANGUAGE explicitly. Disable first test on MacOS X and
	BeOS. Add a third test instead.

2006-03-11  Bruno Haible  <bruno@clisp.org>

	* msgmerge-compendium-5: New file.
	* msgmerge-v.comp.po: New file, from Clytie Siddall.
	* msgmerge-v.pot: New file, from KDE project.
	* msgmerge-v.out: New file.
	* Makefile.am (TESTS): Add msgmerge-compendium-5.
	(EXTRA_DIST): Add msgmerge-v.comp.po, msgmerge-v.pot, msgmerge-v.out.

2006-02-12  Bruno Haible  <bruno@clisp.org>

	* xgettext-c-14: New file.
	* format-boost-1: New file.
	* format-boost-2: New file.
	* Makefile.am (TESTS): Add them.

2006-02-12  Bruno Haible  <bruno@clisp.org>

	* xgettext-c-13: New file.
	* Makefile.am (TESTS): Add it.

2006-02-12  Bruno Haible  <bruno@clisp.org>

	* xgettext-c-12: New file.
	* Makefile.am (TESTS): Add it.

2005-11-21  Bruno Haible  <bruno@clisp.org>

	* format-c-3: Put all non-option arguments after all option arguments,
	so that the test works 1. when POSIXLY_CORRECT is set, 2. on platforms
	whose getopt facility is POSIX compliant but not GNU libc compatible,
	such as Cygwin.
	* format-c-4: Likewise.
	* format-c-5: Likewise.
	* msgattrib-1: Likewise.
	* msgattrib-2: Likewise.
	* msgattrib-3: Likewise.
	* msgattrib-4: Likewise.
	* msgattrib-5: Likewise.
	* msgattrib-6: Likewise.
	* msgattrib-7: Likewise.
	* msgattrib-8: Likewise.
	* msgattrib-9: Likewise.
	* msgattrib-10: Likewise.
	* msgattrib-11: Likewise.
	* msgattrib-12: Likewise.
	* msgattrib-13: Likewise.
	* msgattrib-14: Likewise.
	* msgattrib-15: Likewise.
	* msgattrib-properties-1: Likewise.
	* msgcat-1: Likewise.
	* msgcat-11: Likewise.
	* msgcat-properties-1: Likewise.
	* msgcat-properties-2: Likewise.
	* msgcat-stringtable-1: Likewise.
	* msgcomm-17: Likewise.
	* msgcomm-18: Likewise.
	* msgcomm-19: Likewise.
	* msgcomm-21: Likewise.
	* msgcomm-23: Likewise.
	* msgconv-1: Likewise.
	* msgconv-2: Likewise.
	* msgconv-4: Likewise.
	* msgconv-5: Likewise.
	* msgen-1: Likewise.
	* msgen-2: Likewise.
	* msgen-3: Likewise.
	* msgfmt-1: Likewise.
	* msgfmt-2: Likewise.
	* msgfmt-3: Likewise.
	* msgfmt-4: Likewise.
	* msgfmt-5: Likewise.
	* msgfmt-10: Likewise.
	* msgfmt-12: Likewise.
	* msgfmt-14: Likewise.
	* msgfmt-15: Likewise.
	* msgfmt-properties-1: Likewise.
	* msgfmt-qt-1: Likewise.
	* msggrep-1: Likewise.
	* msggrep-2: Likewise.
	* msggrep-3: Likewise.
	* msggrep-4: Likewise.
	* msggrep-5: Likewise.
	* msggrep-6: Likewise.
	* msggrep-7: Likewise.
	* msgmerge-1: Likewise.
	* msgmerge-2: Likewise.
	* msgmerge-3: Likewise.
	* msgmerge-4: Likewise.
	* msgmerge-5: Likewise.
	* msgmerge-6: Likewise.
	* msgmerge-7: Likewise.
	* msgmerge-8: Likewise.
	* msgmerge-9: Likewise.
	* msgmerge-10: Likewise.
	* msgmerge-11: Likewise.
	* msgmerge-12: Likewise.
	* msgmerge-13: Likewise.
	* msgmerge-14: Likewise.
	* msgmerge-15: Likewise.
	* msgmerge-16: Likewise.
	* msgmerge-17: Likewise.
	* msgmerge-18: Likewise.
	* msgmerge-compendium-1: Likewise.
	* msgmerge-compendium-2: Likewise.
	* msgmerge-compendium-3: Likewise.
	* msgmerge-compendium-4: Likewise.
	* msgmerge-properties-1: Likewise.
	* msgunfmt-1: Likewise.
	* msgunfmt-csharp-1: Likewise.
	* msgunfmt-java-1: Likewise.
	* msgunfmt-properties-1: Likewise.
	* msguniq-1: Likewise.
	* msguniq-2: Likewise.
	* msguniq-3: Likewise.
	* msguniq-4: Likewise.
	* msguniq-5: Likewise.
	* plural-1: Likewise.
	* xgettext-awk-1: Likewise.
	* xgettext-c-3: Likewise.
	* xgettext-c-4: Likewise.
	* xgettext-c-5: Likewise.
	* xgettext-c-6: Likewise.
	* xgettext-c-9: Likewise.
	* xgettext-c-10: Likewise.
	* xgettext-c-11: Likewise.
	* xgettext-csharp-5: Likewise.
	* xgettext-elisp-1: Likewise.
	* xgettext-java-5: Likewise.
	* xgettext-librep-1: Likewise.
	* xgettext-lisp-1: Likewise.
	* xgettext-objc-1: Likewise.
	* xgettext-objc-2: Likewise.
	* xgettext-perl-1: Likewise.
	* xgettext-perl-5: Likewise.
	* xgettext-php-1: Likewise.
	* xgettext-po-1: Likewise.
	* xgettext-properties-1: Likewise.
	* xgettext-python-2: Likewise.
	* xgettext-python-3: Likewise.
	* xgettext-scheme-1: Likewise.
	* xgettext-sh-1: Likewise.
	* xgettext-sh-2: Likewise.
	* xgettext-sh-3: Likewise.
	* xgettext-sh-4: Likewise.
	* xgettext-smalltalk-1: Likewise.
	* xgettext-stringtable-1: Likewise.
	* xgettext-tcl-2: Likewise.
	* xgettext-ycp-2: Likewise.
	Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.

2005-11-21  Bruno Haible  <bruno@clisp.org>

	* gettext-4: Skip the test if there is no de_DE.ISO-8859-1 locale.

2005-10-18  Bruno Haible  <bruno@clisp.org>

	* xgettext-c-11: New file.
	* Makefile.am (TESTS): Add it.

2005-10-05  Bruno Haible  <bruno@clisp.org>

	* msgfmt-15: New file.
	* Makefile.am (TESTS): Add it.

2005-10-04  Bruno Haible  <bruno@clisp.org>

	* msgfmt-10: Change expected error message, to match new line numbers.

2005-10-03  Bruno Haible  <bruno@clisp.org>

	Add support for contexts in xgettext.
	* xgettext-c-10: New file.
	* xgettext-sh-1: Pass additional --keyword option because xgettext's
	behaviour has changed when too few arguments are given.
	* Makefile.am (TESTS): Add xgettext-c-10.

2005-10-01  Bruno Haible  <bruno@clisp.org>

	Support for context dependent translations in PO files.
	* msgattrib-15: New file.
	* msgcat-13: New file.
	* msgcat-14: New file.
	* msgcomm-25: New file.
	* msgconv-5: New file.
	* msgen-3: New file.
	* msgexec-4: New file.
	* msgfilter-4: New file.
	* msgfmt-14: New file.
	* msgfmt-qt-2: New file.
	* msggrep-7: New file.
	* msginit-2: New file.
	* msgmerge-18: New file.
	* msguniq-5: New file.
	* qttest2_de.po: New file.
	* qttest2_de.qm: New file.
	* qttest2_de.ts: New file.
	* Makefile.am (TESTS): Add msgattrib-15, msgcat-13, msgcat-14,
	msgcomm-25, msgconv-5, msgen-3, msgexec-4, msgfmt-14, msgfmt-qt-2,
	msggrep-7, msginit-2, msgmerge-18, msguniq-5.
	(EXTRA_DIST): Add qttest2_de.po, qttest2_de.qm, qttest2_de.ts.

2005-10-01  Bruno Haible  <bruno@clisp.org>

	* msgcat-12: New file.
	* Makefie.am (TESTS): Add it.

2005-10-01  Bruno Haible  <bruno@clisp.org>

	* msgcat-stringtable-1: Update 2005-07-16 patch after the error message
	changed.

2005-10-01  Bruno Haible  <bruno@clisp.org>

	* msgattrib-10: Update for changed behaviour of msgattrib.

2005-09-25  Bruno Haible  <bruno@clisp.org>

	* xgettext-python-3: New file.
	* Makefile.am (TESTS): Add it.

2005-09-17  Bruno Haible  <bruno@clisp.org>

	* msgfmt-7: Update after slight change in error message.
	* msgfmt-8: Likewise.
	* msgfmt-9: Likewise.
	* msgmerge-2: Likewise.
	* msgmerge-9: Likewise.

2005-08-26  Bruno Haible  <bruno@clisp.org>

	* plural-2: Add test for Romanian plural formula.

2005-07-22  Bruno Haible  <bruno@clisp.org>

	* gettext-6-prg.c: Don't compile the test on non-glibc systems.
	* gettext-7-prg.c: Likewise.

2005-07-16  Bruno Haible  <bruno@clisp.org>

        * msgcat-stringtable-1: Filter out warning message from output.

2005-05-27  Bruno Haible  <bruno@clisp.org>

	* msgcat-stringtable-1: Expect \v or \a escape sequence in output.
	* xgettext-csharp-3: Likewise.
	* xgettext-java-2: Likewise.
	* xgettext-python-1: Likewise.

2005-05-05  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (LDADD_yes, LDADD_no): Add @LTLIBTHREAD@.

2005-05-01  Bruno Haible  <bruno@clisp.org>

	* xgettext-sh-4: New file.
	* Makefile.am (TESTS): Add it.

2005-03-20  Bruno Haible  <bruno@clisp.org>

	* gettext-6: New file.
	* gettext-6-prg.c: New file.
	* gettext-6-1.po: New file.
	* gettext-6-2.po: New file.
	* gettext-7: New file.
	* gettext-7-prg.c: New file.
	* gettext-7.po: New file.
	* Makefile.am (TESTS): Add gettext-6, gettext-7.
	(EXTRA_DIST): Add gettext-6-1.po, gettext-6-2.po, gettext-7.po.
	(noinst_PROGRAMS): Add gettext-6-prg, gettext-7-prg.
	(gettext_6_prg_SOURCES, gettext_6_prg_CFLAGS, gettext_6_prg_LDADD): New
	variables.
	(gettext_7_prg_SOURCES, gettext_7_prg_CFLAGS, gettext_7_prg_LDADD): New
	variables.

2005-03-19  Bruno Haible  <bruno@clisp.org>

	* gettext-3: New file.
	* gettext-3-prg.c: New file.
	* gettext-3-1.po: New file, taken from glibc.
	* gettext-3-2.po: New file, taken from glibc.
	* gettext-4: New file.
	* gettext-4-prg.c: New file.
	* gettext-4-po: New file, taken from glibc.
	* gettext-5: New file.
	* gettext-5-prg.c: New file.
	* gettext-5-po: New file, taken from glibc.
	* Makefile.am (TESTS): Add gettext-3, gettext-4, gettext-5.
	(EXTRA_DIST): Add gettext-3-1.po, gettext-3-2.po, gettext-4.po,
	gettext-5.po.
	(noinst_PROGRAMS): Add gettext-3-prg, gettext-4-prg, gettext-5-prg.
	(gettext_3_prg_SOURCES, gettext_3_prg_LDADD): New variables.
	(gettext_4_prg_SOURCES, gettext_4_prg_LDADD): New variables.
	(gettext_5_prg_SOURCES, gettext_5_prg_LDADD): New variables.

2006-06-21  Bruno Haible  <bruno@clisp.org>

	* gettext-0.14.6 released.

2006-06-20  Bruno Haible  <bruno@clisp.org>

	* format-gcc-internal-1: Update to GCC 4.1 internal format strings.
	* format-gcc-internal-2: Likewise.

2005-05-23  Bruno Haible  <bruno@clisp.org>

	* gettext-0.14.5 released.

2005-05-21  Bruno Haible  <bruno@clisp.org>

	* format-gcc-internal-1: Add tests for GCC-4.0 directives %<, %>, %',
	%m, %p, %J and size specifiers.
	* format-gcc-internal-2: Likewise.

2005-05-21  Bruno Haible  <bruno@clisp.org>

	* format-c-2: Test also the type incompatibility due to size.

2005-04-11  Bruno Haible  <bruno@clisp.org>

	* gettext-0.14.4 released.

2005-03-14  Bruno Haible  <bruno@clisp.org>

	* gettext-0.14.3 released.

2005-02-26  Bruno Haible  <bruno@clisp.org>

	* format-scheme-1: Remove tests for ~W, ~_, ~T, ~/, ~<. Update or add
	tests for ~Y, ~C, ~I, ~_, ~/, ~!, ~Q, ~T, ~K.
	* format-scheme-2: Remove tests for ~W, ~<. Add tests for
	~!, ~Q, ~Y, ~I, ~/, ~K.

2005-02-26  Bruno Haible  <bruno@clisp.org>

	* format-scheme-1: Remove test for #!.

2005-02-24  Bruno Haible  <bruno@clisp.org>

	* gettext-0.14.2 released.

2005-02-23  Bruno Haible  <bruno@clisp.org>

	* lang-java: On newer Darwin systems, set the System.out encoding to
	UTF-8, not ISO-8859-1.

2005-02-13  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (TESTS_ENVIRONMENT): Define also the environment variable
	LOCALE_FR_UTF8.
	* lang-bash: Don't test using the traditional french locale if it does
	exist. Try not only the traditional french locale, but also the UTF-8
	locale, if it exists.
	* lang-c: Likewise.
	* lang-c++: Likewise.
	* lang-clisp: Likewise.
	* lang-csharp: Likewise.
	* lang-gawk: Likewise.
	* lang-guile: Likewise.
	* lang-java: Likewise.
	* lang-librep: Likewise.
	* lang-objc: Likewise.
	* lang-perl-1: Likewise.
	* lang-perl-2: Likewise.
	* lang-php: Likewise.
	* lang-sh: Likewise.
	* lang-smalltalk: Likewise.
	* lang-tcl: Likewise.
	* lang-pascal: Likewise, but disable the test of the UTF-8 locale.
	* lang-python-1: Likewise.
	* lang-python-2: Likewise.

2005-02-12  Bruno Haible  <bruno@clisp.org>

	* lang-clisp: Use only the first line of "clisp --version"'s output.
	Needed to avoid /bin/sh limitations on HP-UX 10.

2005-02-08  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (LDADD_yes): Remove INTL_MACOSX_LIBS.
	(LDADD): Add INTL_MACOSX_LIBS here.
	Needed for MacOS X build with --disable-shared --disable-nls.

2005-02-06  Bruno Haible  <bruno@clisp.org>

	* msgcat-11: New file.
	* Makefile.am (TESTS): Add it.

2005-01-29  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (LDADD_yes): Add INTL_MACOSX_LIBS.

2005-01-20  Bruno Haible  <bruno@clisp.org>

	* lang-guile: Make it work.

2005-01-16  Bruno Haible  <bruno@clisp.org>

	Support for Scheme.
	* format-scheme-1: New file.
	* format-scheme-2: New file.
	* xgettext-scheme-1: New file.
	* lang-guile: New file.
	* Makefile.am (TESTS): Add them.

2005-01-08  Bruno Haible  <bruno@clisp.org>

	* msggrep-4: Remove unportability notes.

2005-01-09  Bruno Haible  <bruno@clisp.org>

	* xgettext-8: New file.
	* Makefile.am (TESTS): Add it.

2005-01-05  Bruno Haible  <bruno@clisp.org>

	* tstgettext.c (main): Update year in --version output.
	* tstngettext.c (main): Likewise.

2004-10-01  Guido Flohr  <guido@imperia.net>

	* xgettext-perl-4: Add test case with '-s' function.
	Reported by Ryan Anderson <ryan@autoweb.net>.

2004-09-11  Bruno Haible  <bruno@clisp.org>

	* msginit-1: New file.
	* msgmerge-17: New file.
	* Makefile.am (TESTS): Add msginit-1, msgmerge-17.
	(TESTS_ENVIRONMENT): Also define MSGINIT.
	Reported by Jens A. Tkotz <jens@peino.de>.

2004-09-08  Bruno Haible  <bruno@clisp.org>

	Make lang-java work again on platforms with Java version < 1.4.
	* lang-java: Undo last patch for all platforms except Darwin.
	* Makefile.am (TESTS_ENVIRONMENT): Also define host_os.

2004-08-13  Bruno Haible  <bruno@clisp.org>

	Fix test failures on MacOS X.
	* lang-clisp: Skip the test if clisp was not built with gettext
	support.
	* lang-java: Enforce encoding ISO-8859-1 for System.out.

2004-07-10  Bruno Haible  <bruno@clisp.org>

	* tstgettext.c (expand_escape): Don't go into an endless loop when the
	first backslash is not followed by one of the expected characters.
	Reported by Arkadiusz Miƛkiewicz <arekm@pld-linux.org>.

2004-07-10  Bruno Haible  <bruno@clisp.org>

	* tstgettext.c (expand_escape): Support also \a and \v.

2004-03-14  Bruno Haible  <bruno@clisp.org>

	* format-lisp-2: Add one more test for ~[...~].

2004-01-30  Bruno Haible  <bruno@clisp.org>

	* format-c-5-prg.c (main): Return with exit code 77 when the requested
	locale doesn't exist.
	* format-c-5: Skip the test when the fa_IR locale doesn't exist.
	Reported by Paul Jarc <prj@po.cwru.edu>.

2004-01-29  Bruno Haible  <bruno@clisp.org>

	* gettext-0.14.1 released.

2004-01-28  Bruno Haible  <bruno@clisp.org>

	* gettext-0.14 released.

2004-01-11  Bruno Haible  <bruno@clisp.org>

	* format-c-5: New file.
	* format-c-5-prg.c: New file.
	* Makefile.am (TESTS): Add format-c-5.
	(noinst_PROGRAMS): Add fc5.
	(fc5_SOURCES, fc5_LDADD): New variables.

2004-01-09  Bruno Haible  <bruno@clisp.org>

	* tstgettext.c (main): Update year in --version output.
	* tstngettext.c (main): Likewise.

2004-01-10  Bruno Haible  <bruno@clisp.org>

	* lang-csharp: Work around mono-0.29 CurrentUICulture bug.

2003-12-29  Bruno Haible  <bruno@clisp.org>

	* testlocale.c: Include stdlib.h.

2003-12-29  Bruno Haible  <bruno@clisp.org>

	* xgettext-c-9: Add a test with a multi-part string with newlines and
	comments between the parts.
	* xgettext-java-5: Likewise.
	* xgettext-csharp-5: Likewise.
	* xgettext-python-2: Likewise.
	* xgettext-objc-2: New file.
	* Makefile.am (TESTS): Add it.

2003-12-26  Bruno Haible  <bruno@clisp.org>

	Support for C#.
	* msgunfmt-csharp-1: New file.
	* lang-csharp: New file.
	* Makefile.am (TESTS): Add them.
	(TESTS_ENVIRONMENT): Also set the TESTCSHARP variable.

2003-12-26  Bruno Haible  <bruno@clisp.org>

	* format-csharp-1: New file.
	* format-csharp-2: New file.
	* xgettext-csharp-1: New file.
	* xgettext-csharp-2: New file.
	* xgettext-csharp-3: New file.
	* xgettext-csharp-4: New file.
	* xgettext-csharp-5: New file.
	* Makefile.am (TESTS): Add them.

2003-12-27  Bruno Haible  <bruno@clisp.org>

	* lang-c++: Skip the test if TESTLIBASPRINTF is not set to "yes".
	* Makefile.am (TESTS_ENVIRONMENT): Also set TESTLIBASPRINTF.
	Reported by Adrian Bunk <bunk@fs.tum.de>.

2003-12-12  Bruno Haible  <bruno@clisp.org>

	Assume automake-1.8.
	* Makefile.am (clean-local): Renamed from clean-am.

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

	* gettext-0.13.1 released.

2003-12-14  Bruno Haible  <bruno@clisp.org>

	* xgettext-sh-3: New file.
	* Makefile.am (TESTS): Add it.

2003-12-05  Bruno Haible  <bruno@clisp.org>

	* testlocale.c: New file.
	* Makefile.am (noinst_PROGRAMS): Add testlocale.
	(testlocale_SOURCES): New variable.
	* lang-bash: Skip the test if the testlocale program determines that
	the locale is not usable. (For example on glibc systems with no
	installed fr_FR locale.)
	* lang-clisp: Likewise.
	* lang-gawk: Likewise.
	* lang-java: Likewise.
	* lang-librep: Likewise.
	* lang-php: Likewise.
	* lang-sh: Likewise.

2003-12-05  Bruno Haible  <bruno@clisp.org>

	* lang-c: Use ANSI C function declaration syntax.
	* lang-objc: Likewise.

2003-12-03  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (TESTS_ENVIRONMENT): Add the gettext-runtime/src source
	dir to PATH, so that gettext.sh is found.
	Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.

2003-12-03  Bruno Haible  <bruno@clisp.org>

	* xgettext-glade-2: Protect here document against backslash
	interpretation.
	* xgettext-glade-3: Likewise.
	Reported by Paul Jarc <prj@po.cwru.edu>.

2003-12-02  Bruno Haible  <bruno@clisp.org>

	* xgettext-glade-3: Skip the test if expat is not available.
	Reported by Jouko Orava <joorava@pcu.helsinki.fi>.

2003-11-30  Bruno Haible  <bruno@clisp.org>

	* gettext-0.13 released.

2003-11-22  Bruno Haible  <bruno@clisp.org>

	* xgettext-c-9: New file.
	* xgettext-sh-2: New file.
	* xgettext-python-2: New file.
	* xgettext-lisp-1: New file.
	* xgettext-elisp-1: New file.
	* xgettext-librep-1: New file.
	* xgettext-smalltalk-1: New file.
	* xgettext-java-5: New file.
	* xgettext-awk-1: New file.
	* xgettext-ycp-2: New file.
	* xgettext-tcl-2: New file.
	* xgettext-perl-5: New file.
	* xgettext-php-1: New file.
	* Makefile.am (TESTS): Add them.

2003-11-15  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (AM_CPPFLAGS): Renamed from INCLUDES.

2003-11-15  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (EXTRA_DIST): Remove xg-test1.ok.po, add xg-c-1.ok.po.
	(xg-c-1.ok.po): Renamed from xg-test1.ok.po.

2003-11-15  Bruno Haible  <bruno@clisp.org>

	* xgettext-7: Fix typo in tmpfiles.

2003-11-07  Bruno Haible  <bruno@clisp.org>

	* xgettext-7: New file.
	* Makefile.am (TESTS): Add it.

2003-11-06  Bruno Haible  <bruno@clisp.org>

	* msgcat-stringtable-1: Fix expected test result.

2003-11-02  Bruno Haible  <bruno@clisp.org>

	* msgattrib-properties-1: Renamed from msgattrib-15.
	* msgcat-properties-1: Renamed from msgcat-11.
	* msgcat-properties-2: Renamed from msgcat-12.
	* msgcat-stringtable-1: Renamed from msgcat-13.
	* msgfmt-properties-1: Renamed from msgfmt-13.
	* msgfmt-qt-1: Renamed from msgfmt-15.
	* msgfmt-13: Renamed from msgfmt-14.
	* msgmerge-compendium-1: Renamed from msgmerge-6.
	* msgmerge-compendium-2: Renamed from msgmerge-7.
	* msgmerge-compendium-3: Renamed from msgmerge-8.
	* msgmerge-compendium-4: Renamed from msgmerge-12.
	* msgmerge-update-1: Renamed from msgmerge-14.
	* msgmerge-update-2: Renamed from msgmerge-15.
	* msgmerge-update-3: Renamed from msgmerge-16.
	* msgmerge-properties-1: Renamed from msgmerge-23.
	* msgmerge-properties-2: Renamed from msgmerge-24.
	* msgmerge-6: Renamed from msgmerge-9.
	* msgmerge-7: Renamed from msgmerge-10.
	* msgmerge-8: Renamed from msgmerge-11.
	* msgmerge-9: Renamed from msgmerge-13.
	* msgmerge-10: Renamed from msgmerge-17.
	* msgmerge-11: Renamed from msgmerge-18.
	* msgmerge-12: Renamed from msgmerge-19.
	* msgmerge-13: Renamed from msgmerge-20.
	* msgmerge-14: Renamed from msgmerge-21.
	* msgmerge-15: Renamed from msgmerge-22.
	* msgmerge-16: Renamed from msgmerge-25.
	* msgunfmt-java-1: Renamed from msgunfmt-2.
	* msgunfmt-tcl-1: Renamed from msgunfmt-3.
	* msgunfmt-properties-1: Renamed from msgunfmt-4.
	* xgettext-java-1: Renamed from xgettext-10.
	* xgettext-java-2: Renamed from xgettext-11.
	* xgettext-java-3: Renamed from xgettext-15.
	* xgettext-java-4: Renamed from xgettext-16.
	* xgettext-ycp-1: Renamed from xgettext-17.
	* xgettext-python-1: Renamed from xgettext-18.
	* xgettext-glade-1: Renamed from xgettext-19.
	* xgettext-glade-2: Renamed from xgettext-20.
	* xgettext-tcl-1: Renamed from xgettext-21.
	* xgettext-glade-3: Renamed from xgettext-25.
	* xgettext-perl-1: Renamed from xgettext-26.
	* xgettext-perl-2: Renamed from xgettext-27.
	* xgettext-perl-3: Renamed from xgettext-28.
	* xgettext-perl-4: Renamed from xgettext-29.
	* xgettext-sh-1: Renamed from xgettext-30.
	* xgettext-objc-1: Renamed from xgettext-32.
	* xgettext-stringtable-1: Renamed from xgettext-33.
	* xgettext-c-1: Renamed from xgettext-1.
	* xgettext-c-2: Renamed from xgettext-2.
	* xgettext-c-3: Renamed from xgettext-4.
	* xgettext-c-4: Renamed from xgettext-5.
	* xgettext-c-5: Renamed from xgettext-6.
	* xgettext-c-6: Renamed from xgettext-7.
	* xgettext-c-7: Renamed from xgettext-9.
	* xgettext-c-8: Renamed from xgettext-22.
	* xgettext-po-1: Renamed from xgettext-8.
	* xgettext-properties-1: Renamed from xgettext-24.
	* xgettext-1: Renamed from xgettext-3.
	* xgettext-2: Renamed from xgettext-12.
	* xgettext-3: Renamed from xgettext-13.
	* xgettext-4: Renamed from xgettext-14.
	* xgettext-5: Renamed from xgettext-23.
	* xgettext-6: Renamed from xgettext-31.
	* Makefile.am (TESTS): Update.

2003-10-23  Bruno Haible  <bruno@clisp.org>

	* msgcat-13: Change expected result.

2003-10-21  Bruno Haible  <bruno@clisp.org>

	* lang-bash: Hide the warning about deprecated syntax.

2003-10-21  Bruno Haible  <bruno@clisp.org>

	* msgmerge-25: New file.
	* Makefile.am (TESTS): Add it.

2003-10-19  Bruno Haible  <bruno@clisp.org>

	* format-qt-1: New file.
	* format-qt-2: New file.
	* msgfmt-15: New file.
	* qttest_pl.po: New file.
	* qttest_pl.qm: New file.
	* Makefile.am (TESTS): Add format-qt-1, format-qt-2, msgfmt-15.
	(EXTRA_DIST): Add qttest_pl.po, qttest_pl.qm.

2003-10-14  Bruno Haible  <bruno@clisp.org>

	* xgettext-22: Update expected result.
	* lang-c: Likewise.
	* lang-objc: Likewise.

2003-10-12  Bruno Haible  <bruno@clisp.org>

	* msgcat-13: New file.
	* xgettext-33: New file.
	* Makefile.am (TESTS): Add them.

2003-10-12  Bruno Haible  <bruno@clisp.org>

	* xgettext-32: New file.
	* Makefile.am (TESTS): Add xgettext-32.

2003-10-09  Bruno Haible  <bruno@clisp.org>

	* tstgettext.c: Include xalloc.h instead of xmalloc.h.

2003-10-05  Bruno Haible  <bruno@clisp.org>

	* xgettext-4: Update expected test result.
	* xgettext-5: Likewise.
	* xgettext-6: Likewise.
	* xgettext-8: Likewise.
	* xgettext-24: Likewise.
	* xgettext-26: Pass --flag options to xgettext. Update expected test
	result.
	* lang-perl-1: Pass --flag options to xgettext.
	* lang-perl-2: Likewise.

	* xgettext-31: New file.
	* Makefile.am (TESTS): Add it.

2003-10-04  Bruno Haible  <bruno@clisp.org>

	* xgettext-11: Test details of the new Java backend, instead of the
	--keyword-substring option.

2003-10-07  Bruno Haible  <bruno@clisp.org>

	* lang-perl-1: Set LC_CTYPE to empty in while setting LANG.
	* lang-perl-2: Likewise.
	* lang-tcl: Likewise.

2003-10-06  Guido Flohr  <guido@imperia.net>
            Bruno Haible  <bruno@clisp.org>

	* xgettext-26: Add three tests for 'sub' handling.
	Reported by Crispin Flowerday <cflowerday@zeus.com>.

2003-09-16  Bruno Haible  <bruno@clisp.org>

	* tstgettext.c (add_newline, do_expand): Change type to bool. Make
	static.
	(main, expand_escape): Use bool.
	* tstngettext.c (main): Use bool.

2003-09-13  Bruno Haible  <bruno@clisp.org>

	* lang-sh: Source gettext.sh.
	(echo, eval_gettext, eval_ngettext): Remove definitions.
	* lang-bash: Source gettext.sh.
	(echo, eval_ngettext): Remove definitions.

2003-09-13  Bruno Haible  <bruno@clisp.org>

	* format-sh-1: Update to match stricter format string definition.
	* format-sh-2: Likewise.

2003-09-13  Bruno Haible  <bruno@clisp.org>

	Fix behaviour of "<program> --help > /dev/full".
	* tstgettext.c: Include closeout.h.
	(main): Register close_stdout for execution at program exit.
	* tstngettext.c: Include closeout.h.
	(main): Register close_stdout for execution at program exit.

2003-09-11  Bruno Haible  <bruno@clisp.org>

	* msgfmt-14: New file.
	* Makefile.am (TESTS): Add it.

2003-09-09  Guido Flohr  <guido@imperia.net>

	* xgettext-29: Add more tests.
	* lang-perl-1: Use gettext instead of _.

2003-09-08  Bruno Haible  <bruno@clisp.org>

	* lang-sh: Avoid test failure with Solaris /bin/sh.
	* lang-bash: Avoid test failure when bash is built without i18n
	support.

2003-09-03  Bruno Haible  <bruno@clisp.org>

	* xgettext-30: New file.
	* lang-sh: New file.
	* lang-bash: New file.
	* Makefile.am (TESTS): Add them.
	(TESTS_ENVIRONMENT): Add ../../gettext-runtime/src to the PATH.

2003-08-31  Bruno Haible  <bruno@clisp.org>

	* format-sh-1: New file.
	* format-sh-2: New file.
	* Makefile.am (TESTS): Add them.

2003-09-01  Bruno Haible  <bruno@clisp.org>

	* xgettext-26: Add explicit symbol import to 'use' command.
	* lang-perl-1: Likewise.
	Suggested by Guido Flohr.

2003-09-01  Bruno Haible  <bruno@clisp.org>

	* xgettext-29: New test, from Guido Flohr.
	* Makefile.am (TESTS): Add it.

2003-08-08  Bruno Haible  <bruno@clisp.org>

	* format-gcc-internal-1: New file.
	* format-gcc-internal-2: New file.
	* Makefile.am (TESTS): Add them.

2003-08-04  Bruno Haible  <bruno@clisp.org>

	* lang-perl-1: Small tweaks.
	* lang-perl-2: Likewise.
	* xgettext-26: Likewise.

2003-08-04  Guido Flohr  <guido@imperia.net>

	* format-perl-brace-1: Fix last patch,

2003-07-05  Bruno Haible  <bruno@clisp.org>

	* format-perl-brace-1: Renamed from format-perl-bracket-1. Use braces
	instead of brackets.
	* format-perl-brace-2: Renamed from format-perl-bracket-2. Use braces
	instead of brackets.
	* format-perl-mixed-1: Use braces instead of brackets.
	* format-perl-mixed-2: Likewise.
	* xgettext-26: Likewise.
	* lang-perl-2: Likewise.
	* Makefile.am (TESTS): Add format-perl-brace-[12], remove
	format-perl-bracket-[12].

2003-06-27  Bruno Haible  <bruno@clisp.org>

	* xgettext-27: Also test Unicode character names in here documents.
	* xgettext-28: Likewise.

2003-06-24  Bruno Haible  <bruno@clisp.org>

	* xgettext-27: New file.
	* xgettext-28: New file.
	* Makefile.am (TESTS): Add them.

2003-06-23  Bruno Haible  <bruno@clisp.org>

	* xgettext-26: Fix expected test result for backslashed dollar in
	single-quoted string.

2003-06-23  Bruno Haible  <bruno@clisp.org>

	* format-perl-bracket-2: Allow added arguments in msgstr.

2003-06-21  Bruno Haible  <bruno@clisp.org>

	* xgettext-26: Add more test cases, some from Guido Flohr.
	* format-perl-1: Complete rewrite, based on format-c-1.
	* format-perl-2: Complete rewrite, based on format-c-2.
	* format-perl-bracket-1: New file, based on format-python-1, partially
	from Guido Flohr.
	* format-perl-bracket-2: New file, based on format-python-2, partially
	from Guido Flohr.
	* format-perl-mixed-1: New file, from Guido Flohr.
	* format-perl-mixed-2: New file, from Guido Flohr.
	* lang-perl-1: Renamed from lang-perl.
	* lang-perl-2: New file, from Guido Flohr, based on lang-perl.
	* Makefile.am (TESTS): Add format-perl-bracket-1,
	format-perl-bracket-2, format-perl-mixed-1, format-perl-mixed-2,
	lang-perl-1, lang-perl-2. Remove lang-perl.

2003-06-19  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (TESTS_ENVIRONMENT): Also set LOCALE_FR.
	* lang-c: Use system dependent locale name $LOCALE_FR, not just fr_FR.
	* lang-c++: Likewise.
	* lang-clisp: Likewise.
	* lang-gawk: Likewise.
	* lang-java: Likewise.
	* lang-librep: Likewise.
	* lang-objc: Likewise.
	* lang-pascal: Likewise.
	* lang-perl: Likewise.
	* lang-php: Likewise.
	* lang-python-1: Likewise.
	* lang-python-2: Likewise.
	* lang-smalltalk: Likewise.
	* lang-tcl: Likewise.

2003-06-17  Paul Eggert  <eggert@twinsun.com>

	* msgcat-7: Put msgcat options before file name, so that the test
	doesn't fail if POSIXLY_CORRECT is set.

2003-06-15  Bruno Haible  <bruno@clisp.org>

	* xgettext-26: New file, derived from lang-perl.
	* Makefile.am (TESTS): Add it.
	* lang-perl: Turn into a real integration test.

2003-06-12  Bruno Haible  <bruno@clisp.org>

	* format-perl-1: Avoid conflict with format-awk-1.
	* format-perl-2: Avoid conflict with format-awk-2.
	* Makefile.am (TESTS): Mention perl between tcl and php.

2003-06-11  Guido Flohr  <guido@imperia.net>

	* format-perl-1: New file.
	* format-perl-2: New file.
	* lang-perl: New file.
	* Makefile.am (TESTS): Add them.

2003-05-27  Bruno Haible  <bruno@clisp.org>

	* plural-2: Add test for Slovak plural formula.

2003-05-24  Bruno Haible  <bruno@clisp.org>

	* xgettext-25: New file.
	* Makefile.am (TESTS): Add it.

2003-05-22  Bruno Haible  <bruno@clisp.org>

	* gettext-0.12.1 released.

2003-05-19  Bruno Haible  <bruno@clisp.org>

	* lang-smalltalk: Skip the test if smalltalk version 2.1 or 2.1.1
	is used; these versions lack the I18N package.

2003-05-17  Bruno Haible  <bruno@clisp.org>

	* gettext-0.12 released.

2003-04-27  Bruno Haible  <bruno@clisp.org>

	* plural-2: Really make the test fail if there is a mismatch. Add a
	test for the alternate formula for Russian from the glibc manual.

2003-04-26  Bruno Haible  <bruno@clisp.org>

	* msgattrib-15: New file.
	* msgcat-11: New file.
	* msgcat-12: New file.
	* msgcmp-3: New file.
	* msgcomm-24: New file.
	* msgconv-4: New file.
	* msgen-2: New file.
	* msgexec-3: New file.
	* msgfilter-3: New file.
	* msgfmt-13: New file.
	* msggrep-6: New file.
	* msgmerge-23: New file.
	* msgmerge-24: New file.
	* msgunfmt-4: New file.
	* msguniq-4: New file.
	* xgettext-24: New file.
	* msguniq-a.inp: New file.
	* Makefile.am (TESTS): Add the new tests.
	(EXTRA_DIST): Add msguniq-a.inp.

2003-04-14  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (CHECKER): New variable.
	(TESTS_ENVIRONMENT): Use it.

2003-04-12  Bruno Haible  <bruno@clisp.org>

	* Makefile.vms: Avoid rules with no lines. Don't use the force target.
	Suggested by Jouk Jansen <joukj@hrem.stm.tudelft.nl>.

2003-04-06  Bruno Haible  <bruno@clisp.org>

	* lang-c++: Update includes list to match the changed location of
	autosprintf.h.

2003-03-30  Bruno Haible  <bruno@clisp.org>

	* Makefile.vms: New file.
	* Makefile.am (EXTRA_DIST): Add Makefile.vms.

2003-03-17  Bruno Haible  <bruno@clisp.org>

	Native Woe32/MSVC support.
	* Makefile.msvc: New file.
	* Makefile.am (EXTRA_DIST): Add it.
	(INCLUDES): Look for libgnuintl.h in ../intl, not
	$(top_srcdir)/../gettext-runtime/intl.

2003-02-28  Bruno Haible  <bruno@clisp.org>

	Support for relocatable installation.
	* tstgettext.c: Include progname.h, relocatable.h.
	(program_name): Remove variable.
	(main): Use set_program_name. Relocate LOCALEDIR value. Update
	copyright year.
	* tstngettext.c: Include progname.h, relocatable.h.
	(program_name): Remove variable.
	(main): Use set_program_name. Relocate LOCALEDIR value. Update
	copyright year.
	* Makefile.am (tstgettext_CFLAGS, tstngettext_CFLAGS): New variables.

2003-02-28  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (localedir): New variable.

2003-02-28  Bruno Haible  <bruno@clisp.org>

	* xgettext-19: Add Report-Msgid-Bugs-To line to expected result.
	* xgettext-20: Likewise.

2003-02-23  Bruno Haible  <bruno@clisp.org>

	* format-lisp-1: Correct the syntax of a test string.

2003-02-22  Bruno Haible  <bruno@clisp.org>

	* lang-python-1: Renamed from lang-python. Make it work with Python
	2.3.
	* lang-python-2: New file.
	* Makefile.am (TESTS): Remove lang-python, add lang-python-[12].

2003-02-20  Bruno Haible  <bruno@clisp.org>

	* msgfilter-1: Remove SKIP: messages, now emitted by the Makefile.
	* msgfilter-2: Likewise.
	* msgunfmt-2: Likewise.
	* msgunfmt-3: Likewise.
	* xgettext-19: Likewise.
	* xgettext-20: Likewise.
	* lang-c: Likewise.
	* lang-c++: Likewise.
	* lang-clisp: Likewise.
	* lang-gawk: Likewise.
	* lang-java: Likewise.
	* lang-librep: Likewise.
	* lang-objc: Likewise.
	* lang-pascal: Likewise.
	* lang-php: Likewise.
	* lang-python: Likewise.
	* lang-smalltalk: Likewise.
	* lang-tcl: Likewise.

2003-02-20  Bruno Haible  <bruno@clisp.org>

	* lang-gawk: Skip the test if gawk was built with --disable-nls.
	Reported by Paul Jarc <prj@po.cwru.edu>.

2003-02-18  Bruno Haible  <bruno@clisp.org>

	* Makefile.am (clean-am): New rule. For Solaris cc.

2003-02-18  Bruno Haible  <bruno@clisp.org>

	* xgettext-13: Add Report-Msgid-Bugs-To line to expected result.
	* xgettext-14: Likewise.
	* xgettext-18: Likewise.
	* xgettext-21: Likewise.
	* xgettext-23: Likewise.

2003-02-12  Bruno Haible  <bruno@clisp.org>

	Big restructuring.
	* rpath*: Moved to autoconf-lib-link package.
	* Makefile.am (TESTS, EXTRA_DIST): Remove rpath*.
	(EXTRA_DIST): Add ChangeLog.0.
	(xg-test1.ok.po): Drop gettext.c from input files.
	(INCLUDES): Refer to intl in gettext-runtime directory.
	* lang-c++: Update for changed directory structure.
	* lang-java: Likewise.
	* xgettext-1: Drop gettext.c from input files.
	* xgettext-3: Update for changed domain name.


See ChangeLog.0 for earlier changes.