-
Notifications
You must be signed in to change notification settings - Fork 9
/
ChangeLog
3052 lines (1879 loc) · 85 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
2012-10-07 Giuseppe Scrivano <[email protected]>
* configure.ac: Check for patchconf.
2012-09-23 Merinov Nikolay <[email protected]>
* m4/wget.m4 (WGET_FNMATCH): Add AC_LANG_SOURCE into
AC_COMPILE_IFELSE in order to silence autoconf 2.68 warning.
2012-09-20 Giuseppe Scrivano <[email protected]>
* bootstrap: Update from gnulib.
2012-09-02 Nguyễn Thái Ngọc Duy <[email protected]> (tiny change)
* po/POTFILES.in: Add more files.
2012-07-08 Giuseppe Scrivano <[email protected]>
* bootstrap: Update from gnulib.
* bootstrap.conf (gnulib_extra_files): Remove $build_aux/missing.
* lib/Makefile.am: Delete file.
2012-06-16 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Remove `closeout'.
Reported by: Micah Cowan <[email protected]>.
2012-05-31 Ángel González <[email protected]>
* convert.c: fix segfault on wrong urls (bug 36570)
2012-05-13 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Add `git-version-gen'.
* build-aux/bzr-version-gen: Remove file.
* configure.ac: Invoke `build-aux/git-version-gen' to get the dist
version.
* Makefile.am (EXTRA_DIST): Distribute build-aux/git-version-gen instead
of build-aux/bzr-version-gen.
2012-04-11 Gijs van Tulder <[email protected]>
* bootstrap.conf (gnulib_modules): Include module `regex'.
* configure.ac: Check for PCRE library.
2012-03-25 Ray Satiro <[email protected]>
* configure.ac: Fix build under mingw when OpenSSL is used.
2012-03-20 Ángel González <[email protected]>
* bootstrap.conf (gnulib_modules): Add modules `ftello',
`mkstemp' and `strtok_r'.
2012-02-26 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Add module `closeout'.
2012-01-09 Gijs van Tulder <[email protected]>
* configure.ac: Always try to use libz, even without SSL.
2011-12-12 Giuseppe Scrivano <[email protected]>
* Makefile.am (EXTRA_DIST): Add build-aux/bzr-version-gen.
Reported by: Elan Ruusamäe <[email protected]>.
2011-12-11 Giuseppe Scrivano <[email protected]>
* util/trunc.c (main): Call `close' on the fd and check for errors.
Reported by: <[email protected]>.
2011-10-23 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Include module `vsnprintf'.
2011-10-16 Steven Schubiger <[email protected]>
* util/paramcheck.pl: Match 1 or more times where applicable.
(extract_entries): Return a copy instead of reference.
2011-09-04 Alan Hourihane <[email protected]> (tiny change)
* configure.ac: Check for libz when gnutls is used.
2011-08-26 Giuseppe Scrivano <[email protected]>
* configure.ac: Under mingw don't check for static OpenSSL
libraries if the shared version was already found.
Suggested by: Ray Satiro <[email protected]>.
2011-08-25 Giuseppe Scrivano <[email protected]>
* configure.ac: Check for `utime'.
2011-08-11 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Add `sigprocmask'.
* configure.ac: Do not hardcode GNU TLS and OpenSSL libraries.
* bootstrap.conf (gnulib_modules): Include module iconv.
* configure.ac: Allow --with-libgnutls-prefix and
--with-libssl-prefix
Suggested by: Karl Berry <[email protected]>
* build-aux/bzr-version-gen (TAG): Consider only the last tag.
2011-08-10 Giuseppe Scrivano <[email protected]>
* configure.ac: Print usage string for --with-ssl.
Reported by: Karl Berry <[email protected]>
* configure.ac: Check for `gnutls_priority_set_direct' when gnutls is
used.
Reported by: Karl Berry <[email protected]>
2011-08-09 Giuseppe Scrivano <[email protected]>
* build-aux/bzr-version-gen: Fix some portability issues.
2011-05-25 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Add `strerror_r-posix'.
2011-05-19 Giuseppe Scrivano <[email protected]>
* COPYING: Fix the copyright years.
Reported by: Brett Smith <[email protected]>.
2011-04-19 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Add `mkdir'.
2011-04-19 Ray Satiro <[email protected]>
* configure.ac: Adjust indentation.
2011-04-17 Giuseppe Scrivano <[email protected]>
* configure.ac: Do not check the host_os twice and if windres is
available.
Reported by: Ray Satiro <[email protected]>
2011-04-16 Ray Satiro <[email protected]>
2011-04-16 Giuseppe Scrivano <[email protected]>
* configure.ac: Detect dynamically linked OpenSSL libraries under
mingw32.
2011-04-14 Giuseppe Scrivano <[email protected]>
* bootstrap: Update from gnulib.
* bootstrap.conf (gnulib_modules): Add `pipe' and `sigpipe'.
* .cvsignore: Remove file.
* .hgignore: Likewise.
* .symlinks: Likewise.
* bootstrap.conf (gnulib_modules): Add `mbtowc and `unlocked-io'.
2011-04-04 Giuseppe Scrivano <[email protected]>
* configure.ac: Use AC_CHECK_LIB to look for the openssl library.
2011-04-03 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Add `fcntl'.
(gnulib_modules): Add `ioctl'.
2011-03-26 Giuseppe Scrivano <[email protected]>
* configure.ac: Fix the gnutls detection.
2011-03-21 Giuseppe Scrivano <[email protected]>
* bootstrap: Update from gnulib.
2011-03-19 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (buildreq): Update build prerequisites list.
2010-12-07 Jessica McKellar <[email protected]> (tiny change)
* vms/WGET.HLP: Make help message clearer.
2010-10-24 Jessica McKellar <[email protected]> (tiny change)
* NEWS: Mention the change to the the summary for recursive downloads.
2010-10-23 Giuseppe Scrivano <[email protected]>
* configure.ac: Add check for libgpg-error and libgcrypt.
2010-09-06 Giuseppe Scrivano <[email protected]>
* lib/Makefile.am: Fix typo.
2010-08-08 Giuseppe Scrivano <[email protected]>
* Makefile.am (EXTRA_DIST): Remove configure.bat.
2010-07-24 Giuseppe Scrivano <[email protected]>
* configure.bat: Remove file.
2010-07-11 Giuseppe Scrivano <[email protected]>
* configure.ac (AC_CHECK_SIZEOF): Quote argument.
Reported by: Jochen Roderburg <[email protected]>.
2010-07-09 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (buildreq): Relax gettext version to 0.17.
2010-07-09 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Add `vasprintf'. Remove `asprintf'.
2010-07-05 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Add `asprintf'.
2010-06-22 Giuseppe Scrivano <[email protected]>
* configure.ac: By default use GNU TLS not OpenSSL.
2010-06-17 Giuseppe Scrivano <[email protected]>
* windows: Remove directory.
* Makefile.am (SUBDIRS): Remove windows.
* configure.ac: Don't generate windows/Makefile.
2010-06-15 Giuseppe Scrivano <[email protected]>
* m4/wget.m4 (WGET_STRUCT_SOCKADDR_STORAGE): Guard header inclusions.
(TYPE_STRUCT_SOCKADDR_IN6): Likewise.
(MEMBER_SIN6_SCOPE_ID): Likewise.
(PROTO_INET6): Likewise.
* configure.ac: Don't check for `getaddrinfo'.
* bootstrap.conf (gnulib_modules): Add `getaddrinfo' module.
2010-06-10 Giuseppe Scrivano <[email protected]>
* configure.ac (AM_INIT_AUTOMAKE): Remove dist-bzip2 dist-lzma from
automake options.
Reported by: Daniel Stenberg <[email protected]>.
2010-06-10 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (buildreq): Add definition.
2010-06-04 Giuseppe Scrivano <[email protected]>
* build-aux/build_info.pl: Use /usr/bin/env to find the perl
interpreter.
* util/paramcheck.pl: Likewise.
* util/rmold.pl: Likewise.
Reported by [email protected].
2010-06-03 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Add iconv-h.
2010-06-03 Giuseppe Scrivano <[email protected]>
* configure.ac (W32LIBS): Remove -lwsock32.
2010-05-27 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Add `snprintf' module.
* configure.ac: Remove check for the `snprintf' function.
2010-05-16 Giuseppe Scrivano <[email protected]>
* md5: Remove directory.
* bootstrap.conf (gnulib_modules): Add crypto/md5.
* configure.ac: Remove any check for md5 libraries.
* Makefile.am (ACLOCAL_AMFLAGS): Remove -I md5/m4.
(SUBDIRS): Remove md5.
2010-05-15 Giuseppe Scrivano <[email protected]>
* bootstrap.conf (gnulib_modules): Add "getopt-gnu". Remove "getopt".
2010-05-14 Giuseppe Scrivano <[email protected]>
* bootstrap (gnulib_path): Default to "gnulib" if it doesn't have a
value. Redirect "git clone" stderr to stdout.
2010-05-09 Giuseppe Scrivano <[email protected]>
* build-aux/bzr-version-gen: New file.
* Makefile.am (EXTRA_DIST): Add .version.
(BUILT_SOURCES): New defition.
(.version): New rule.
(dist-hook): Likewise.
* configure.ac (AC_INIT): Use build-aux/bzr-version-gen to generate the
version string.
2010-05-08 Giuseppe Scrivano <[email protected]>
* Makefile.am: Update copyright years.
* build-aux/build_info.pl: Likewise.
* configure.ac: Likewise.
* configure.bat: Likewise.
* doc/Makefile.am: Likewise.
* doc/fdl.texi: Likewise.
* doc/texi2pod.pl: Likewise.
* doc/wget.texi: Likewise.
* m4/exitfail.m4: Likewise.
* m4/getpagesize.m4: Likewise.
* m4/wchar.m4: Likewise.
* m4/wctype.m4: Likewise.
* m4/wget.m4: Likewise.
* md5/Makefile.am: Likewise.
* md5/dummy.c: Likewise.
* md5/m4/00gnulib.m4: Likewise.
* md5/m4/gnulib-cache.m4: Likewise.
* md5/m4/gnulib-common.m4: Likewise.
* md5/m4/gnulib-comp.m4: Likewise.
* md5/m4/gnulib-tool.m4: Likewise.
* md5/m4/include_next.m4: Likewise.
* md5/m4/longlong.m4: Likewise.
* md5/m4/md5.m4: Likewise.
* md5/m4/multiarch.m4: Likewise.
* md5/m4/stddef_h.m4: Likewise.
* md5/m4/stdint.m4: Likewise.
* md5/m4/wchar.m4: Likewise.
* md5/m4/wchar_t.m4: Likewise.
* md5/m4/wint_t.m4: Likewise.
* md5/md5.h: Likewise.
* md5/stddef.in.h: Likewise.
* md5/stdint.in.h: Likewise.
* md5/wchar.in.h: Likewise.
* msdos/config.h: Likewise.
* msdos/msdos.c: Likewise.
* po/POTFILES.in: Likewise.
* util/Makefile.am: Likewise.
* util/paramcheck.pl: Likewise.
* util/rmold.pl: Likewise.
2010-05-07 Giuseppe Scrivano <[email protected]>
* configure.ac: Don't call macro WGET_SOCKLEN_T.
(W32LIBS): Add -lws2_32.
* Makefile.am (EXTRA_DIST): Remove autogen.sh.
* bootstrap.conf (gnulib_modules): Use new modules from gnulib: accept,
bind, close, connect, getpeername, getsockname, listen, setsockopt.
* m4/wget.m4 (WGET_SOCKLEN_T): Remove macro.
* po/wget.pot: Remove.
2010-05-07 Giuseppe Scrivano <[email protected]>
* configure.ac (ALL_LINGUAS): Remove.
2010-05-06 Giuseppe Scrivano <[email protected]>
* bootstrap: New file.
* bootstrap.conf: New file.
* lib/Makefile.am: include gnulib.mk.
* autogen.sh: Removed.
* GNUmakefile: Likewise.
* INSTALL: Likewise.
* build-aux/announce-gen: Likewise.
* build-aux/compile: Likewise.
* build-aux/config.guess: Likewise.
* build-aux/config.rpath: Likewise.
* build-aux/config.sub: Likewise.
* build-aux/depcomp: Likewise.
* build-aux/gnupload: Likewise.
* build-aux/install-sh: Likewise.
* build-aux/mdate-sh: Likewise.
* build-aux/missing: Likewise.
* build-aux/mkinstalldirs: Likewise.
* build-aux/texinfo.tex: Likewise.
* build-aux/update-copyright: Likewise.
* build-aux/useless-if-before-free: Likewise.
* build-aux/vc-list-files: Likewise.
* build-aux/ylwrap: Likewise.
* lib/DESCRIP_DEPS.MMS: Likewise.
* lib/DESCRIP_MODS.MMS: Likewise.
* lib/DESCRIP_SRC.MMS: Likewise.
* lib/alloca.c: Likewise.
* lib/alloca.in.h: Likewise.
* lib/c-ctype.c: Likewise.
* lib/c-ctype.h: Likewise.
* lib/config.charset: Likewise.
* lib/errno.in.h: Likewise.
* lib/error.c: Likewise.
* lib/error.h: Likewise.
* lib/exitfail.c: Likewise.
* lib/exitfail.h: Likewise.
* lib/fseeko.c: Likewise.
* lib/getdelim.c: Likewise.
* lib/getline.c: Likewise.
* lib/getopt.c: Likewise.
* lib/getopt.in.h: Likewise.
* lib/getopt1.c: Likewise.
* lib/getopt_int.h: Likewise.
* lib/getpagesize.c: Likewise.
* lib/getpass.c: Likewise.
* lib/getpass.h: Likewise.
* lib/gettext.h: Likewise.
* lib/intprops.h: Likewise.
* lib/localcharset.c: Likewise.
* lib/localcharset.h: Likewise.
* lib/lseek.c: Likewise.
* lib/mbrtowc.c: Likewise.
* lib/mbsinit.c: Likewise.
* lib/memchr.c: Likewise.
* lib/memchr.valgrind: Likewise.
* lib/quote.c: Likewise.
* lib/quote.h: Likewise.
* lib/quotearg.c: Likewise.
* lib/quotearg.h: Likewise.
* lib/realloc.c: Likewise.
* lib/ref-add.sin: Likewise.
* lib/ref-del.sin: Likewise.
* lib/stdbool.in.h: Likewise.
* lib/stddef.in.h: Likewise.
* lib/stdint.in.h: Likewise.
* lib/stdio-impl.h: Likewise.
* lib/stdio-write.c: Likewise.
* lib/stdio.in.h: Likewise.
* lib/stdlib.in.h: Likewise.
* lib/str-two-way.h: Likewise.
* lib/strcasecmp.c: Likewise.
* lib/strcasestr.c: Likewise.
* lib/streq.h: Likewise.
* lib/strerror.c: Likewise.
* lib/string.in.h: Likewise.
* lib/strings.in.h: Likewise.
* lib/strncasecmp.c: Likewise.
* lib/unistd.in.h: Likewise.
* lib/verify.h: Likewise.
* lib/wchar.in.h: Likewise.
* lib/wctype.in.h: Likewise.
* lib/xalloc-die.c: Likewise.
* lib/xalloc.h: Likewise.
* lib/xmalloc.c: Likewise.
* m4/00gnulib.m4: Likewise.
* m4/alloca.m4: Likewise.
* m4/codeset.m4: Likewise.
* m4/errno_h.m4: Likewise.
* m4/error.m4: Likewise.
* m4/extensions.m4: Likewise.
* m4/fseeko.m4: Likewise.
* m4/getdelim.m4: Likewise.
* m4/getline.m4: Likewise.
* m4/getopt.m4: Likewise.
* m4/getpass.m4: Likewise.
* m4/gettext.m4: Likewise.
* m4/glibc21.m4: Likewise.
* m4/gnulib-cache.m4: Likewise.
* m4/gnulib-common.m4: Likewise.
* m4/gnulib-comp.m4: Likewise.
* m4/gnulib-tool.m4: Likewise.
* m4/iconv.m4: Likewise.
* m4/include_next.m4: Likewise.
* m4/inline.m4: Likewise.
* m4/lib-ld.m4: Likewise.
* m4/lib-link.m4: Likewise.
* m4/lib-prefix.m4: Likewise.
* m4/localcharset.m4: Likewise.
* m4/locale-fr.m4: Likewise.
* m4/locale-ja.m4: Likewise.
* m4/locale-zh.m4: Likewise.
* m4/longlong.m4: Likewise.
* m4/lseek.m4: Likewise.
* m4/malloc.m4: Likewise.
* m4/mbrtowc.m4: Likewise.
* m4/mbsinit.m4: Likewise.
* m4/mbstate_t.m4: Likewise.
* m4/memchr.m4: Likewise.
* m4/mmap-anon.m4: Likewise.
* m4/multiarch.m4: Likewise.
* m4/nls.m4: Likewise.
* m4/po.m4: Likewise.
* m4/progtest.m4: Likewise.
* m4/quote.m4: Likewise.
* m4/quotearg.m4: Likewise.
* m4/realloc.m4: Likewise.
* m4/stdbool.m4: Likewise.
* m4/stddef_h.m4: Likewise.
* m4/stdint.m4: Likewise.
* m4/stdio_h.m4: Likewise.
* m4/stdlib_h.m4: Likewise.
* m4/strcase.m4: Likewise.
* m4/strcasestr.m4: Likewise.
* m4/strerror.m4: Likewise.
* m4/string_h.m4: Likewise.
* m4/strings_h.m4: Likewise.
* m4/unistd_h.m4: Likewise.
* m4/wchar_t.m4: Likewise.
* m4/wint_t.m4: Likewise.
* m4/xalloc.m4: Likewise.
* maint.mk: Likewise.
* po/Makefile.in.in: Likewise.
* po/Makevars: Likewise.
* po/Rules-quot: Likewise.
* po/be.po: Likewise.
* po/bg.po: Likewise.
* po/boldquot.sed: Likewise.
* po/ca.po: Likewise.
* po/cs.po: Likewise.
* po/da.po: Likewise.
* po/de.po: Likewise.
* po/el.po: Likewise.
* po/en_GB.po: Likewise.
* po/eo.po: Likewise.
* po/es.po: Likewise.
* po/et.po: Likewise.
* po/eu.po: Likewise.
* po/fi.po: Likewise.
* po/fr.po: Likewise.
* po/ga.po: Likewise.
* po/gl.po: Likewise.
* po/he.po: Likewise.
* po/hr.po: Likewise.
* po/hu.po: Likewise.
* po/id.po: Likewise.
* po/it.po: Likewise.
* po/ja.po: Likewise.
* po/lt.po: Likewise.
* po/nb.po: Likewise.
* po/nl.po: Likewise.
* po/pl.po: Likewise.
* po/pt.po: Likewise.
* po/pt_BR.po: Likewise.
* po/quot.sed: Likewise.
* po/ro.po: Likewise.
* po/ru.po: Likewise.
* po/sk.po: Likewise.
* po/sl.po: Likewise.
* po/sr.po: Likewise.
* po/sv.po: Likewise.
* po/tr.po: Likewise.
* po/uk.po: Likewise.
* po/vi.po: Likewise.
* po/zh_CN.po: Likewise.
* po/zh_TW.po: Likewise.
2010-05-04 Giuseppe Scrivano <[email protected]>
* AUTHORS: Added myself.
2010-05-03 Giuseppe Scrivano <[email protected]>
* configure.ac: Fix a sanity check by the AC_CONFIG_SRCDIR macro.
2010-05-01 Giuseppe Scrivano <[email protected]>
* NEWS: Mention support for HTTP/1.1.
2009-10-09 Steven Schweda <[email protected]>
* New VMS MMS/MMK builders, to accommodate the new source tree
structure:
lib/DESCRIP_DEPS.MMS Dependencies (lib)
lib/DESCRIP_MODS.MMS Modules (lib)
lib/DESCRIP_SRC.MMS Main (lib)
md5/DESCRIP_DEPS.MMS Dependencies (md5)
md5/DESCRIP_MODS.MMS Modules (md5)
md5/DESCRIP_SRC.MMS Main (md5)
src/DESCRIP_DEPS.MMS Dependencies (src)
src/DESCRIP_MODS.MMS Modules (src)
src/DESCRIP_SRC.MMS Main (src)
vms/DESCRIP.MMS Main (global)
vms/DESCRIP_MKDEPS.MMS Dependency generator
vms/DESCRIP_SRC.MMS Main (main)
vms/DESCRIP_SRC_CMN.MMS Main (common)
vms/DESCRIP_SRC_FLAGS.MMS Compiler and linker flags
vms/COLLECT_DEPS.COM Dependency processor
vms/CONFIG_EXTRACT.COM Extract AC_INIT from configure.ac
vms/WGET_MULTINET.OPT Link options for (old) MultiNet
vms/WGET_SSL_HP.OPT Link options for HP SSL
vms/WGET_SSL_O.OPT Link options for OpenSSL
* Other VMS-specific files:
vms/alloca.h Dummy alloca.h.
vms/config.h_vms Manually crafted config.h
vms/stdint.h Dummy stdint.h
vms/vms.h Declarations, prototypes for vms.c
vms/vms_ip.h Helper for netdb.h
vms/VMS_NOTES.TXT Instructions, notes
vms/WGET.HLP Basic VMS HELP
2009-10-09 Micah Cowan <[email protected]>
* build_aux/build_info.pl: Reworked the input format. Eliminated
support, and need, for arbitrary #if blocks. Introduced
"choices", and explicitly open the .c file rather than print to
STDOUT, so we avoid creating the file if we find problems with
the input. Options are advertised in alphabetical order.
2009-09-24 Micah Cowan <[email protected]>
* vms/vms.c: Moved to src/src.c.
2009-09-22 Micah Cowan <[email protected]>
* configure.ac: Added "sleep" and "symlink" to AC_CHECK_FUNCS,
removing the hard-coded definition of HAVE_SYMLINK. When running
on MinGW, compile mswindows.c, and link against libwsock32.
2009-09-21 Micah Cowan <[email protected]>
* vms/VMS-WGET.COM: "the the" -> "the".
* po/POTFILES.in: Removed some files that are not using gettext.
* po/*.po: Updated from translationproject.org.
2009-09-20 Micah Cowan <[email protected]>
* INSTALL: Various minor adjustments to bring it up to date.
2009-09-09 Micah Cowan <[email protected]>
* configure.ac: Add bz2 and lzma dists.
2009-09-08 Micah Cowan <[email protected]>
* po/*.po: Updated from translationproject.org.
2009-09-07 Micah Cowan <[email protected]>
* Makefile.am (distuninstallcheck_listfiles): Don't complain if
/usr/share/info/dir and /etc/wgetrc are left behind after an
uninstall.
* po/Rules-quot (mostlyclean-quot): Add en_US.po for remvoal by
mostlyclean.
(en_US.po-update): Behave properly for VPATH builds.
2009-09-05 Micah Cowan <[email protected]>
* configure.ac: If we can't find idna.h, check to see if it's
because we need to add /usr/include/idn to the inclusion
path (for OpenSolaris).
2009-09-04 Steven Schubiger <[email protected]>
* configure.ac: Place gl_EARLY and md5_EARLY before the gettext
macros in order to silence autoconf warnings.
2009-09-04 Micah Cowan <[email protected]>
* Makefile.am (EXTRA_DIST): build_info.pl ->
build-aux/build_info.pl
* build-aux/build_info.pl: Moved from top directory.
* md5/*: Updated md5 from gnulib.
* configure.ac: Configured build-aux/ as auxiliarry directory.
* build-aux/compile, build-aux/config.guess,
build-aux/config.rpath, build-aux/config.sub, build-aux/depcomp,
build-aux/install-sh, build-aux/link-warning.h,
build-aux/mdate-sh, build-aux/missing, build-aux/mkinstalldirs,
build-aux/texinfo.tex, build-aux/useless-if-before-free,
build-aux/vc-list-files, build-aux/ylwrap: Moved from top
directory.
* build-aux/announce-gen: Imported from gnulib.
* build-aux/update-copyright: Imported from gnulib.
* build-aux/gnupload: Imported from gnulib.
* lib/Makefile.am, m4/gnulib-cache.m4, m4/gnulib-comp.m4: Adjusted
for announce-gen, update-copyright, and gnupload.
2009-09-03 Micah Cowan <[email protected]>
* NEWS: Give credit to jff for SSL security fix, call attention to
IRI support's dependence on libidn and libiconv, and note that
--html-extension is still accepted, though deprecated.
* lib/*, m4/*: Updated gnulib.
* lib/getpagesize.c, lib/memchr.c, lib/memchr.valgrind,
lib/stddef.in.h, lib/str-two-way.h, lib/strcasecmp.c,
lib/strcasestr.c, lib/strings.in.h, lib/strncasecmp.c,
m4/getpagesize.m4, m4/memchr.m4, m4/mmap-anon.m4,
m4/stddef_h.m3, m4/strcase.m4, m4/strcasestr.m4,
m4/strings_h.m4, m4/wchar_t.m4: Added, via gnulib --import
strcasestr.
* configure.ac: Move AM_GNU_GETTEXT below AC_AIX, to shut up
autoconf warnings.
2009-09-03 gettextize <[email protected]>
* m4/gettext.m4: Upgrade to gettext-0.17.
* m4/iconv.m4: Upgrade to gettext-0.17.
* m4/lib-link.m4: Upgrade to gettext-0.17.
* m4/po.m4: Upgrade to gettext-0.17.
* po/Makefile.in.in: Upgrade to gettext-0.17.
* configure.ac (AM_GNU_GETTEXT_VERSION): Bump to 0.17.
2009-09-02 Micah Cowan <[email protected]>
* po/Rules-quot (en_US.po-update): Remove use of GNU make's
non-portable $^ variable.
2009-08-27 Micah Cowan <[email protected]>
* NEWS: Mention the changes to exit codes.
2009-08-27 Micah Cowan <[email protected]>
* NEWS: Add mention of the NUL characters SSL security fix.
2009-07-28 Micah Cowan <[email protected]>
* NEWS: Mention some more previously undocumented items, the
new "ascii" specifer for --restrict-file-names, and the renaming
of --html-extension to --adjust-extension.
2009-07-27 Petr Pisar <[email protected]>
* po/Makevars (MSGID_BUGS_ADDRESS): Fixed.
2009-07-10 Micah Cowan <[email protected]>
* util/paramcheck.pl (find_documentation): Added.
(emit_undocumented_opts): Check for documentation in both TexInfo
and --help string.
2009-07-05 Micah Cowan <[email protected]>
* po/Rules-quot: Added targets to build en@{quot,boldquot}.po
* po/POTFILES.in: Added src/gnutls.c, src/iri.c.
* po/*.po: Updated translations from TP. New translation:
Lithuanian.
* lib/*, md5/*: Updated gnulib.
2009-07-04 Steven Schweda <[email protected]>
* vms/COLLECT_DEPS.COM, vms/config.h_vms, vms/decc_ver.c,
vms/DESCRIP_CONFIG.MMS, vms/DESCRIP_DEPS.MMS,
vms/DESCRIP_MKDEPS.MMS, vms/DESCRIP.MMS, vms/DESCRIP_SRC.MMS,
vms/vms.c, vms/vms.h, vms/vms_ip.h, vms/vms_name_fix.sh,
vms/VMS_NOTES.TXT, vms/VMS-WGET.COM, vms/WGET.HLP,
vms/WGET_MULTINET.OPT, vms/WGET.OPT, vms/WGET_SSL_HP.OPT,
vms/WGET_SSL.OPT: Added.
2009-07-03 Micah Cowan <[email protected]>
* configure.ac: Ensure LIBICONV is empty if IRIs are disabled.
* AUTHORS: Added Ted Mielczarek and Saint Xavier.
* NEWS: Added items for IRI support, new --version information.
2009-07-01 Steven Schubiger <[email protected]>
* Makefile.am: Add build_info.pl to EXTRA_DIST.
* build_info.pl: Generate build_info.c from data.
2009-06-14 Micah Cowan <[email protected]>
* po/Makefile.in.in (distclean): remove en_US.po, too.
* Makefile.am: Include md5 as a subdir unconditionally.
It may result in useless compilation, and additional risk of
breaking a build of something that isn't actually needed, but
otherwise it's too much of a hassle to manage a failure-free
distcheck.
2009-06-12 Micah Cowan <[email protected]>
* configure.ac: Check for h_errno declaration. Idea thanks to
Maciej W. Rozycki.
2009-03-03 Steven Schubiger <[email protected]>
* src/ftp.c, src/http.c, src/main.c, src/recur.h,
tests/Makefile.am: Update the copyright years.
2009-01-23 Steven Schubiger <[email protected]>
* util/freeopts, util/rmold.pl, util/trunc.c: Remove
unnecessary whitespace.
2008-11-10 Micah Cowan <[email protected]>
* MAILING-LIST: Mention Gmane, introduce subsections.
2008-11-05 Micah Cowan <[email protected]>
* MAILING-LIST: Mention moderation for unsubscribed posts, and
archive location.
2008-10-31 Micah Cowan <[email protected]>
* MAILING-LIST: Update information.
* NEWS: Add mention of mailing list move.
2008-08-01 Joao Ferreira <[email protected]>
* NEWS: Added option --default-page to support alternative
default names for index.html
2008-06-30 Micah Cowan <[email protected]>
* NEWS: Entries for 1.11.4.
* AUTHORS: Added Steven Schubiger.
2008-06-26 Xavier Saint <[email protected]>
* configure.ac : IRIs support required libiconv, check it.
2008-06-14 Xavier Saint <[email protected]>
* configure.ac: Add support for IRIs
2008-05-29 Micah Cowan <[email protected]>
* po/*.po: Updated from TP (the 1.11.3 set).
* po/POTFILES.in: Added some more files from lib/, remove
src/xmalloc.c.
* po/quot.sed, po/boldquot.sed: Automatic handling of quotearg's `
and '.
2008-05-15 Micah Cowan <[email protected]>
* NEWS: Entry for --ask-password.
2008-05-14 Joao Ferreira <[email protected]>
* src/main.c, src/http.c, src/ftp.c: -nc is now working in
conjunction with '-O file'.
2008-05-12 Micah Cowan <[email protected]>
* NEWS: Translations and -N/-O.
2008-04-30 Micah Cowan <[email protected]>
* NEWS: Added documentation for changes made in 1.11.2.
2008-04-30 Steven Schubiger <[email protected]>
* lib/getdelim.c, lib/getline.c, lib/getpass.c,
lib/getpass.h, lib/realloc.c, lib/stdio.h,
lib/stdio.in.h, lib/stdlib.h, lib/stdlib.in.h: Imported
from gnulib.
* m4/eoverflow.m4, m4/extensions.m4, m4/getdelim.m4,
m4/getline.m4, m4/getpass.m4, m4/malloc.m4, m4/realloc.m4,
m4/stdio_h.m4, m4/stdlib_h.m4: Imported from gnulib.
* md5/stdint.h: Imported from gnulib.
* GNUmakefile: Updated from gnulib.
* lib/Makefile.am, lib/getopt.c, lib/unistd.in.h: Updated
from gnulib.
* m4/gnulib-cache.m4, m4/gnulib-common.m4, m4/gnulib-comp.m4,
m4/include_next.m4, m4/unistd_h.m4: Updated from gnulib.
* md5/Makefile.am, md5/m4/gnulib-cache.m4, md5/m4/gnulib-common.m4,
md5/m4/gnulib-comp.m4, md5/m4/include_next.m4, md5/m4/md5.m4,
md5/m4/stdint.m4, md5/md5.c, md5/md5.h, md5/stdint.in.h,
md5/wchar.in.h: Updated from gnulib.
2008-04-24 Micah Cowan <[email protected]>
* NEWS: Removed info about move to Automake, Gnulib. Added item
about the addition of CSS support.
2008-04-22 Micah Cowan <[email protected]>
* ylwrap: Added via automake -ac.
2008-04-22 Ted Mielczarek <[email protected]>
* configure.ac: Added check for lex.
2008-04-14 Micah Cowan <[email protected]>
* GNUmakefile, lib/Makefile.am, lib/error.c, lib/error.h,
lib/exitfail.c, lib/exitfail.h, lib/getopt.c, lib/intprops.h,
lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
lib/stdlib.in.h, lib/strerror.c, lib/string.in.h,
lib/unistd.in.h, lib/wchar.in.h, lib/wctype.in.h,
lib/xalloc-die.c, lib/xalloc.h, lib/xmalloc.c, m4/error.m4,
m4/exitfail.m4, m4/extensions.m4, m4/gnulib-cache.m4,
m4/gnulib-comp.m4, m4/include_next.m4, m4/inline.m4,
m4/mbrtowc.m4, m4/mbstate_t.m4, m4/quote.m4, m4/quotearg.m4,
m4/stdlib_h.m4, m4/strerror.m4, m4/string_h.m4, m4/unistd_h.m4,
m4/wchar.m4, m4/wctype.m4, m4/wint_t.m4, m4/xalloc.m4,
md5/Makefile.am, md5/m4/gnulib-cache.m4, md5/m4/gnulib-comp.m4,
md5/m4/include_next.m4, md5/m4/md5.m4, md5/m4/stdint.m4,
md5/md5.c, md5/md5.h, md5/stdint.in.h, md5/wchar.in.h: Update
from Gnulib, and add the "quote" module.
2008-03-20 Micah Cowan <[email protected]>
* ABOUT-NLS: Reinstated, but with a message mentioning that
gettext is not included.
* Makefile.am: Removed "test" target; "check" should be used
instead (and "test" was mildly broken, anyway).
2008-03-24 Micah Cowan <[email protected]>
* NEWS: Added documentation change re: --no-parents, and various
caveats on accept/reject lists behavior. Rearranged some items in
order of priority.
2008-02-14 Micah Cowan <[email protected]>
* ABOUT-NLS: Removed.
2008-02-10 Micah Cowan <[email protected]>
* NEWS: Added note re interrupted files resulting in renames,
and new --auth-no-challenge option.
2008-02-06 Micah Cowan <[email protected]>
* configure.ac (AC_CHECK_FUNCS): Added check for mbtowc.
* NEWS: Added notes regarding fixes for the localized progress
bar and --no-clobber wasted GET request.
* po/be.po: Added from the TP.
2008-02-03 Micah Cowan <[email protected]>
* configure.in: Add checks for wchar.h, wcwidth function (to
support column-counting in progress.c).
* NEWS: Added line for 1.11.1.
* util/README, util/Makefile.am, util/trunc.c: Added a small
utility program to create files of arbitrary size (useful for
testing certain situations with --continue).
2008-01-31 Micah Cowan <[email protected]>
* util/README, util/dist-wget, util/download-netscape.html,
util/download.html, util/update_po_files.sh, util/wget.spec:
Removed (obsolete and/or incomplete).