-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2023 lines (1159 loc) · 54.6 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
2008-06-29 Micah Cowan <[email protected]>
* po/*.po: Sync with TP.
2008-05-12 Micah Cowan <[email protected]>
* Makefile.in (dist): Create wget.pot first.
* NEWS: Translations and -N/-O.
2008-04-30 Micah Cowan <[email protected]>
* NEWS: Added documentation for changes made in 1.11.2 so far.
* po/*.po: Sync with TP.
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.
* po/*.po: Ensure synchronization with the TP, resync with
sources.
2008-02-14 Micah Cowan <[email protected]>
* po/*.po: Updates from the Translation Project, resync with
sources.
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.in (AC_CHECK_FUNCS): Added check for mbtowc.
* NEWS: Added notes regarding fixes for the localized progress
bar and --no-clobber wasted GET request.
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.
2008-01-26 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).
* DISTFILES: Removed the above entries from the dist.
2008-01-25 Micah Cowan <[email protected]>
* Makefile.in, NEWS, README, autogen.sh, configure.bat,
configure.in, m4/wget.m4, po/POTFILES.in, util/Makefile.in,
util/dist-wget, util/rmold.pl: Update copyright year.
* DISTFILES: Added wget.pod, to avoid regeneration as a
dependency of wget.1, on systems that lack Perl.
2007-12-14 Micah Cowan <[email protected]>
* po/cs.po, po/ja.po, po/nl.po, po/pt.po, po/sk.po: Updates from
the Translation Project.
2007-12-10 Micah Cowan <[email protected]>
* NEWS: Removed developer-only notices (Autoconf, TODO, PATCHES,
GNUTLS).
2007-12-06 Micah Cowan <[email protected]>
* Makefile.in, DISTFILES: Ensure that info and man pages are
included in the distribution.
2007-12-05 Micah Cowan <[email protected]>
* NEWS: Reword warnings regarding --content-disposition.
2007-11-28 Micah Cowan <[email protected]>
* Makefile.in, README, autogen.sh, configure.bat, configure.in,
m4/wget.m4, util/Makefile.in, util/dist-wget: Updated license
exception for OpenSSL, per the SFLC.
2007-11-19 Micah Cowan <[email protected]>
* po/fi.po, po/hu.po, po/pt.po: Update from the Translation
Project.
2007-11-08 Micah Cowan <[email protected]>
* po/be.po: Added new language support from the Translation
Project.
* DISTFILES: Added po/be.po.
2007-10-30 Micah Cowan <[email protected]>
* po/it.po: Update from the Translation project.
2007-10-24 Micah Cowan <micah@schmendrick>
* po/vi.po, po/ga.po: Update from the Translation project.
2007-10-23 Micah Cowan <micah@schmendrick>
* po/de.po, po/ja.po: Update from the Translation Project.
2007-10-22 Micah Cowan <[email protected]>
* po/*: Update from the Translation Project, and synced
against current source.
2007-10-13 Micah Cowan <[email protected]>
* DISTFILES: Now hard-coded (just for 1.11; we use Automake for
1.12+.
* Makefile.in: Removed DISTFILES target, "make distclean" in
distdir (no Makefile is included in the distribution). Handle
".hg" dirs in addition to ".svn".
2007-10-12 Micah Cowan <[email protected]>
* PATCHES: Removed.
* NEWS: Updated info about source repositories, removal of
PATCHES file.
2007-10-03 Micah Cowan <[email protected]>
* NEWS: Note missing functionality from GnuTLS support. Call out
attention to content_disposition's experimental status.
2007-09-25 Micah Cowan <[email protected]>
* configure.in: Remove unnecessary heuristic to generate exeext
variable, since AC_PROG_CC and others automatically set EXEEXT.
Pointed out by Steve Kenton <[email protected]>.
2007-09-12 Micah Cowan <[email protected]>
* AUTHORS: Added... me...
* TODO: file removed, bugtracker is authoritative source for
planned changes.
2007-08-26 Micah Cowan <[email protected]>
* po/POTFILES.in: Added spider.c.
2007-08-24 Micah Cowan <[email protected]>
* po/no.po: removed; replaced by nb.po (per the translation
project coordinator, Benno Schulenberg).
2007-08-22 Micah Cowan <[email protected]>
* Makefile.in: Exclude .svn directories and below from
distribution.
2007-08-09 Ralf Wildenhues <[email protected]>
* m4/wget.m4 (WGET_PROCESS_PO, AM_PATH_PROG_WITH_TEST): Add
missing M4 quotation. Delete serial number.
2007-08-09 Micah Cowan <[email protected]>
* NEWS: Timestamping from most recent response.
2007-08-08 Micah Cowan <[email protected]>
* NEWS: Call attention to the fact that Content-Disposition is
not enabled by default.
2007-08-07 Micah Cowan <[email protected]>
* configure.in: Fix --with-libssl-prefix failure by replacing
usage of sh "if" statement with "AS_IF" macros, to force
AC_REQUIRE'd macros to be expanded before the conditional
statement body.
* NEWS: Note that configure.in now requires autoconf >= 2.61,
to support AS_IF and its expansion of AC_REQUIREs.
2007-07-29 Micah Cowan <[email protected]>
* NEWS: No more auth before challenge. No more auth info in
Referer. New --max-redirect option.
2007-07-09 Micah Cowan <[email protected]>
* README, util/wget.spec: Removed references to wget.sunsite.dk.
2007-07-05 Micah Cowan <[email protected]>
* AUTHORS:
Draw attention to previous maintainers.
* autogen.sh, config.guess, config.sub, configure.bat:
* configure.in, m4/wget.m4, Makefile.in, util/dist-wget:
* util/Makefile.in, util/rmold.pl:
Updated GPL reference to version 3 or later, removed FSF
address.
* README:
Updated reference to maintainer, and updated GPL reference to
version 3 or later.
* COPYING:
Replaced with verson 3.
2006-08-28 Noèl Köthe <[email protected]>
* Makefile.in: Fixed a DESTDIR-related bug.
2006-07-17 Daniel Richard G. <[email protected]>
* Makefile.in: Added DESTDIR='$(DESTDIR)' to MAKEDEFS.
2006-07-14 Mauro Tortonesi <[email protected]>
* configure.in: Check for intptr_t.
2006-06-27 Hrvoje Niksic <[email protected]>
* configure.in: We're no longer using strtoimax.
2006-02-28 Hrvoje Niksic <[email protected]>
* configure.in: Check for memrchr.
2005-11-19 Hrvoje Niksic <[email protected]>
* configure.in: Check for uintptr_t.
2005-11-02 Mauro Tortonesi <[email protected]>
* Makefile.in: Improved support for unit testing.
* configure.in: Ditto.
2005-10-27 Mauro Tortonesi <[email protected]>
* Makefile.in: Added basic support for unit testing.
2005-08-26 Stepan Kasal <[email protected]>
* configure.in: Abort configure if --with-ssl given but SSL
unavailable. Use HAVE_LIBSSL and HAVE_LIBGNUTLS symbols provided
by AC_LIB_HAVE_LINKFLAGS instead of inventing new ones.
2005-08-11 Hrvoje Niksic <[email protected]>
* configure.in: Check for strtoll and strtoimax.
2005-07-08 Hrvoje Niksic <[email protected]>
* configure.in: Remove -Wno-implicit from default GCC warning
flags.
2005-07-08 Hrvoje Niksic <[email protected]>
* configure.in: Don't check for symlink, which is expected to
exist. Check for asprintf.
2005-07-07 Hrvoje Niksic <[email protected]>
* configure.bat: Copy the common config.h and config-compiler.h.
2005-07-06 Hrvoje Niksic <[email protected]>
* configure.in: Don't check for setjmp.h.
2005-07-06 Hrvoje Niksic <[email protected]>
* Makefile.in: Also use @LIBGNUTLS@ to build LIBS.
2005-07-05 Hrvoje Niksic <[email protected]>
* configure.in: Add check for GnuTLS if --with-ssl=gnutls is used.
2005-07-03 Hrvoje Niksic <[email protected]>
* po/POTFILES.in: Include src/ptimer.c.
2005-07-01 Hrvoje Niksic <[email protected]>
* configure.in: Mention in message that the "GNU" md5
implementation is in fact built-in to Wget.
2005-06-29 Hrvoje Niksic <[email protected]>
* m4/wget.m4 (WGET_WITH_NLS): Don't check for locale.h.
2005-06-29 Hrvoje Niksic <[email protected]>
* configure.in: Test for $LIBSSL instead of the old $ssl_success
when deciding which MD5 to use.
2005-06-29 Hrvoje Niksic <[email protected]>
* configure.in: Require Autoconf 2.59.
2005-06-29 Hrvoje Niksic <[email protected]>
* configure.in: Check for drand48.
2005-06-26 Hrvoje Niksic <[email protected]>
* m4/wget.m4: Use proper GPL header.
2005-06-25 Hrvoje Niksic <[email protected]>
* Makefile.in: No need to clean .libs.
2005-06-25 Hrvoje Niksic <[email protected]>
* Makefile.in (DISTFILES): Don't split the sed invocation across
several lines, Solaris make passes the backslashes to sed literally.
2005-06-25 Hrvoje Niksic <[email protected]>
* Makefile.in: Instead of creating configure.bat from
configure.bat.in, simply make sure the correct EOL style in
checked out of the repository.
2005-06-24 Hrvoje Niksic <[email protected]>
* configure.in: Move the large file check further up. Only check
for endianness if GNU md5 is used (it being the only file that
needs endianness information).
2005-06-24 Hrvoje Niksic <[email protected]>
* configure.in: Don't indent #include lines.
2005-06-24 Hrvoje Niksic <[email protected]>
* configure.in: Enable the user to turn off SSL autodetection and
disable SSL using --without-ssl.
* Makefile.in ($(srcdir)/stamp-h.in): Remove the aclocal.m4
dependencies.
2005-06-24 Hrvoje Niksic <[email protected]>
* configure.in: Include m4/*.m4.
* aclocal.m4: Renamed to m4/wget.m4.
2005-06-24 Hrvoje Niksic <[email protected]>
* configure.in: Use AC_LIB_HAVE_LINKFLAGS instead of
AC_LIB_LINKFLAGS when checking for library functions.
* configure.in: Don't waste time checking for headers and
functions we know must be there. But manually AC_DEFINE the
functions that might be missing from non-Unix systems.
2005-06-23 Mauro Tortonesi <[email protected]>
* libtool.m4, ltmain.sh: Deleted.
* configure.in: Replaced ugly libtool-based check for OpenSSL libs
with a simpler config.rpath-based approach.
* Makefile.in, src/Makefile.in: Removed libtool support.
* m4/lib-link.m4, m4/lib-prefix.m4, m4/lib-ld.m4, config.rpath:
config.rpath macros taken from gettext 0.14.5.
2005-06-23 Hrvoje Niksic <[email protected]>
* configure.in: Don't check for strpbrk and mktime.
2005-06-23 Hrvoje Niksic <[email protected]>
* util/dist-wget: Port to subversion.
2005-06-22 Hrvoje Niksic <[email protected]>
* README.svn: Renamed to README.checkout. Edited to mention the
autogen.sh script.
2005-06-22 Hrvoje Niksic <[email protected]>
* autogen.sh: New file.
* Makefile.svn: Deleted, replaced with the even simpler (and more
standard) `autogen.sh' script.
2005-06-22 Hrvoje Niksic <[email protected]>
* configure.in: Don't check for signal.h. Remove the
AC_HEADER_TIME check. Remove the test for ANSI C prototypes.
2005-06-22 Hrvoje Niksic <[email protected]>
* configure.in: Check for C99 conformant stdbool.h.
2005-06-22 Hrvoje Niksic <[email protected]>
* MAILING-LIST: Remove reference to the obsolete `wget-cvs'
mailing list.
2005-06-22 Hrvoje Niksic <[email protected]>
* config.sub, config.guess: Updated from canonical location.
2005-06-22 Hrvoje Niksic <[email protected]>
* configure.in: Assume existence of gettimeofday and select.
gettimeofday exists on all platforms we care about (except for
Windows where Windows-specific functions are used instead), and
select exists virtually everywhere.
* configure.in: Assume existence of strerror, signal, strstr, and
memmove, which are all required by ANSI C.
2005-06-21 Hrvoje Niksic <[email protected]>
* Makefile.cvs: Renamed to Makefile.svn.
* README.cvs: Renamed to README.svn.
2005-06-20 Hrvoje Niksic <[email protected]>
* configure.in: Don't check for the return type of signal
handlers; C89 requires it to be void.
2005-06-19 Hrvoje Niksic <[email protected]>
* aclocal.m4: Remove support for K&R compilers.
2005-05-10 Hrvoje Niksic <[email protected]>
* configure.in: Test for OpenSSL includes we actually need.
2005-05-06 Hrvoje Niksic <[email protected]>
* Makefile.in ($(srcdir)/stamp-h.in): Don't print the line with
the comment about running autoheader.
2005-05-06 Hrvoje Niksic <[email protected]>
* configure.in: Set MAKEINFO to "true" so build doesn't fail for
users without either makeinfo or the pre-packaged info files.
2005-05-02 Hrvoje Niksic <[email protected]>
* INSTALL: Document environment variables affecting configure,
especially $CC.
* INSTALL: Mention that make install requires root.
2005-04-29 Hrvoje Niksic <[email protected]>
* configure.in: Don't set ipv6 to yes only because struct
sockaddr_in6 was found. Stop the rest of the IPv6 checks when one
check fails. Abort if IPv6 was explicitly requested, but not
found.
2005-04-28 Hrvoje Niksic <[email protected]>
* windows/Makefile.top.bor: Use MAKEDIR for make clean too.
2005-04-28 Hrvoje Niksic <[email protected]>
* windows/Makefile.src.bor: Don't delete executables other than
wget.exe. Delete various auxilliary files created by the Borland
build process.
2005-04-28 Hrvoje Niksic <[email protected]>
* NEWS: Advertise new-style syntax for --no-dns-cache instead
of --dns-cache=off.
2005-04-28 Hrvoje Niksic <[email protected]>
* windows/Makefile.src.bor: Don't suppress unreachable code
warning.
2005-04-28 Herold Heiko <[email protected]>
* windows/wget.dep: Rename gen_sslfunc.c to openssl.c.
2005-04-28 Hrvoje Niksic <[email protected]>
* INSTALL: Mention --disable-ntlm.
2005-04-27 Mauro Tortonesi <[email protected]>
* NEWS: Mention the new --ftp-user, --ftp-password, --user and
--password options, the name changes for --http-passwd and
--proxy-passwd and the deprecation of login and passwd commands.
2005-04-22 Hrvoje Niksic <[email protected]>
* po/eo.po: Added Esperanto translation.
2005-04-21 Hrvoje Niksic <[email protected]>
* po/vi.po: Added Vietnamese translation.
2005-04-18 Hrvoje Niksic <[email protected]>
* MACHINES: Removed.
2005-04-08 Hrvoje Niksic <[email protected]>
* configure.in: When checking for OpenSSL headers, check for all
the ones that Wget is using.
2005-04-08 Hrvoje Niksic <[email protected]>
* windows/Makefile.src: Compile ptimer.c and http-ntlm.c.
2005-04-08 Hrvoje Niksic <[email protected]>
* configure.in: Use it.
* aclocal.m4 (WGET_POSIX_CLOCK): Check whether -lrt is needed to
use POSIX clock functions like clock_gettime.
2005-04-08 Hrvoje Niksic <[email protected]>
* Makefile.in ($(srcdir)/stamp-h.in): Don't attempt to run
autoheader automatically; it breaks things with fresh CVS builds.
2005-04-06 Hrvoje Niksic <[email protected]>
* configure.in: Allow the user to disable NTLM authorization.
Make sure NTLM is disabled if OpenSSL is unavailable. If NTLM is
*explicitly* requested and OpenSSL is unavailable, abort.
* configure.in: Renamed USE_* to ENABLE_*.
2005-03-23 Hrvoje Niksic <[email protected]>
* po/POTFILES.in: Removed headers.c and rbuf.c.
2005-03-06 Hrvoje Niksic <[email protected]>
* windows/Makefile.src.bor: Reenable warnings under Borland C,
disabling only specific warnings. Generate Pentium Pro code by
default.
2003-02-24 Hrvoje Niksic <[email protected]>
* configure.in: Don't check for AI_ADDRCONFIG here, it is checked
for in the source directly.
2003-02-25 Hrvoje Niksic <[email protected]>
* libtool.m4, ltmain.sh, config.sub, config.guess: Upgrade to
libtool 1.5.14.
2003-02-23 Hrvoje Niksic <[email protected]>
* libtool.m4, ltmain.sh, config.sub, config.guess: Upgrade to
libtool 1.5.8.
2005-02-20 Hrvoje Niksic <[email protected]>
* configure.in: Check for LFS. Determine SIZEOF_OFF_T.
Check for ftello.
2005-02-18 Marco Colombo <[email protected]>
* po/it.po: Updated Italian translation.
2004-05-09 David Fritz <[email protected]>
* windows/Makefile.src.bor: Fix broken build rule. Add clean target.
* windows/Makefile.top.bor: Use tabs instead of spaces. Ignore
errors in clean rules. Use lowercase filenames when building
distribution .zip archive.
* windows/config.h.bor: Don't define HAVE_UINT32_T.
* windows/Makefile.doc: Fix remaining instance of build rules
indented with spaces instead of tabs.
* windows/Makefile.src: Update copyright year.
* windows/Makefile.top: Update copyright year.
* windows/config.h.mingw (WGET_USE_STDARG, HAVE_SIG_ATOMIC_T): Define.
* windows/config.h.ms (HAVE_STRPBRK, HAVE_LIMITS_H)
(HAVE_LOCALE_H): Define.
* windows/Makefile.watcom: Add /I. to CFLAGS. Remove reference to
specific Wget version from linker flags. Add missing
dependencies.
2004-02-09 David Fritz <[email protected]>
* configure.bat.in: Don't clear the screen.
* windows/README: Add introductory paragraph. Re-word a few
sentences. Correct minor typographical errors. Use consistent
capitalization of Wget, SSL, and OpenSSL. Refer to Microsoft
Visual C++ as MSVC instead of VC++. Mention the --msvc option to
configure.bat. Reflow paragraphs.
* windows/Makefile.top: Use tabs instead of spaces. Ignore errors
in clean rules. Use lowercase filenames when building distribution
.zip archive.
* windows/Makefile.doc: Use tabs instead of spaces. Ignore errors
in clean rules.
* windows/Makefile.src: Clean-up clean rules. Use tabs instead of
spaces. Link against gdi32.lib. Don't define SYSTEM_WGETRC.
Remove unused macros. Remove anachronistic and superfluous linker
flags. Don't rename wget.exe to all upper-case. Add
`preprocessor' conditionals for SSL and newer MSVC options. Use
batch rules. Don't suppress all warnings.
2003-11-26 Hrvoje Niksic <[email protected]>
* aclocal.m4: Don't check for AI_V4MAPPED and for AI_ALL, since
Wget doesn't need them.
* configure.in: Check for struct sockaddr_storage.
2003-11-12 Hrvoje Niksic <[email protected]>
* configure.in: Use a more standard checking message when checking
for md5.h.
2003-11-12 Hrvoje Niksic <[email protected]>
* configure.in: Tweak ansi2knr test, use : instead of true.
2003-11-12 Hrvoje Niksic <[email protected]>
* configure.in: Check for limits.h.
2003-11-10 Hrvoje Niksic <[email protected]>
* aclocal.m4 (WGET_SOCKLEN_T): Use AC_COMPILE_IFELSE instead of
AC_TRY_COMPILE.
2003-11-10 Hrvoje Niksic <[email protected]>
* aclocal.m4 (WGET_STRUCT_UTIMBUF): Use AC_CHECK_TYPES instead of
AC_EGREP_CPP to check for struct utimbuf.
2003-11-09 Hrvoje Niksic <[email protected]>
* aclocal.m4 (WGET_WITH_NLS): Respect the user's setting of
LINGUAS, e.g. `LINGUAS="en bg ja" ./configure'.
2003-11-09 Hrvoje Niksic <[email protected]>
* configure.in: Don't attempt to use Emacs as a makeinfo
substitute.
2003-11-07 Hrvoje Niksic <[email protected]>
* README: Remove explicit version reference, so that the file
doesn't have to be updated for each new release.
2003-11-05 Hrvoje Niksic <[email protected]>
* libtool.m4, ltmain.sh, config.sub, config.guess: Upgrade to
libtool 1.5.
2003-11-05 Hrvoje Niksic <[email protected]>
* windows/config.h.ms: MSVC doesn't have uint32_t.
2003-11-05 Hrvoje Niksic <[email protected]>
* configure.in: Remove the broken check for socks.
2003-11-05 Hrvoje Niksic <[email protected]>
* configure.in: Substitute ANSI2KNR and U, so we can compile.
2003-11-05 Hrvoje Niksic <[email protected]>
* configure.in: Use the Autoconf macro AC_C_PROTOTYPES instead of
the old AM_C_PROTOTYPES.
2003-11-04 Hrvoje Niksic <[email protected]>
* configure.in: Use the new form of AC_OUTPUT.
* Makefile.cvs (prep): Invoke autoheader.
2003-11-04 Hrvoje Niksic <[email protected]>
* configure.in: Require Autoconf 2.57.
2003-11-04 Hrvoje Niksic <[email protected]>
* aclocal.m4: Ditto.
* configure.in: Add description annotations to AC_DEFINE.
* Makefile.in: Update maintenance targets, preparing them for the
use of `autoheader'.
2003-11-04 Hrvoje Niksic <[email protected]>
* configure.in: Don't misuse AC_MSG_RESULT. Use AC_MSG_NOTICE
where appropriate.
2003-11-04 Hrvoje Niksic <[email protected]>
* configure.in: Check whether volatile is supported. Don't check
for gethostname and uname, which are not used.
2003-11-04 Hrvoje Niksic <[email protected]>
* configure.in: Move some checks into aclocal.m4. Check whether
fnmatch.h is includable.
* configure.in: Also check whether #include <md5.h> works before
deciding to use Solaris libmd5.
* configure.in: Use AC_MSG_NOTICE instead of echo. Use
AC_MSG_ERROR for fatal errors.
2003-11-03 Hrvoje Niksic <[email protected]>
* configure.in: Look for nanosleep in -lrt and -lposix4, which is
where Solaris has them.
2003-11-03 Hrvoje Niksic <[email protected]>
* configure.in: Check for nanosleep.
2003-03-09 Nicolas Schodet <[email protected]>
* Makefile.in: Fixed bad configure.bat scrdir.
2003-10-29 Hrvoje Niksic <[email protected]>
* configure.in: Reenable IPv6 autodetection.
2003-10-26 Hrvoje Niksic <[email protected]>
* configure.in: Switch from u_int32_t to uint32_t. Check for
inttypes.h so it's used to get the definition of uint32_t where
available.
2003-10-26 Hrvoje Niksic <[email protected]>
* windows/Makefile.src.watcom (OBJS): Use convert.c.
From Chin-yuan Kuo.
2003-10-26 Hrvoje Niksic <[email protected]>
* windows/config.h.bor: DEBUG is now ENABLE_DEBUG. Borland has
snprintf, but not u_int32_t.
* windows/Makefile.src.bor (OBJS): Use convert.c.
From Chin-yuan Kuo.
2003-10-26 Hrvoje Niksic <[email protected]>
* windows/config.h.mingw: Ditto.
* windows/Makefile.top.mingw: Ditto.
* windows/Makefile.src.mingw: New file.
* windows/wget.dep: Support convert.o.
* configure.bat.in: New option `--mingw'.
From Chin-yuan Kuo.
2003-10-23 Hrvoje Niksic <[email protected]>
* Makefile.in (dist): Depend on configure.bat.
(realclean-top): Delete configure.bat.
2003-10-21 Hrvoje Niksic <[email protected]>
* Makefile.in (distclean-top): Remove the libtool script, because
it's generated by configure.
2003-10-16 Hrvoje Niksic <[email protected]>
* configure.in: Don't check for int32_t because we're not really
using it.
2003-10-11 Hrvoje Niksic <[email protected]>
* configure.in: Check for int32_t and u_int32_t. Check for
SIZEOF_INT.
2003-10-10 Hrvoje Niksic <[email protected]>
* aclocal.m4 (WGET_WITH_NLS): First check for gettext in libintl,
then use the libc version. That way systems that get libintl.h
from /usr/local/include will get the matching gettext.
2003-10-10 Hrvoje Niksic <[email protected]>
* po/tr.po: Ditto.
* po/sv.po: Updated from TP.
2003-10-09 Herold Heiko <[email protected]>
* windows/Makefile.watcom (OBJS): Ditto.
* windows/Makefile.src.bor: Ditto.
* windows/wget.dep: Ditto.
* windows/Makefile.src: Removed references to fnmatch.c and
fnmatch.o.
2003-10-09 Hrvoje Niksic <[email protected]>
* po/ft.po, po/sk.po, po/ja.po: Updated from the TP.
2003-10-08 Hrvoje Niksic <[email protected]>
* po/wget.pot: Recreated.
2003-10-08 Hrvoje Niksic <[email protected]>
* configure.in: Renamed DEBUG to ENABLE_DEBUG.
2003-10-04 Hrvoje Niksic <[email protected]>
* libtool.m4: New file with contents imported from libtool.
* aclocal.m4: Move libtool stuff into a separate file. That
leaves this file only with Wget-specific stuff.
2003-10-01 Hrvoje Niksic <[email protected]>
* po/hu.po: Updated from the TP.
* po/et.po: Updated from the TP.
* po/ro.po: New file from the TP.
2003-10-01 Hrvoje Niksic <[email protected]>
* po/hr.po: Updated.
2003-10-01 Hrvoje Niksic <[email protected]>
* po/POTFILES.in: Added src/convert.c.
2003-09-30 Herold Heiko <[email protected]>
* windows/Makefile.src (OBJ): Fix typo.
2003-09-26 Gisle Vanem <[email protected]>
* windows/config.h.ms: Don't declare alloca under compilers that
support it.
* windows/config.h.ms: Define HAVE_SNPRINTF, HAVE_VSNPRINTF, and
HAVE_MEMMOVE.
2003-09-25 Herold Heiko <[email protected]>
* windows/Makefile.src: Updated OBJ list.
2003-09-23 Hrvoje Niksic <[email protected]>
* Makefile.in (clean-top): Remove .libs.
2003-09-23 Hrvoje Niksic <[email protected]>
* Makefile.in (distclean-top): Remove autom4te.cache.
2003-09-17 Hrvoje Niksic <[email protected]>
* install-sh, mkinstalldirs: Updated from Autoconf 2.57.
2003-09-17 Hrvoje Niksic <[email protected]>
* ltmain.sh, aclocal.m4: Upgrade to libtool 1.4.3. Libtool 1.5
has been out for a while now, but it can wait until after Wget 1.9
is released.
2003-09-17 Hrvoje Niksic <[email protected]>
* config.sub: Ditto.
* config.guess: Updated from Autoconf 2.57.
2003-09-16 Hrvoje Niksic <[email protected]>
* util/dist-wget: Fixed portable echo checking under Bash.
2003-09-16 Hrvoje Niksic <[email protected]>
* configure.in: Change AC_CHECK_FUNC(getaddrinfo...) to
AC_CHECK_FUNCS, which automatically defines HAVE_GETADDRINFO.
2003-09-16 Mauro Tortonesi <[email protected]>
* configure.in, aclocal.m4: Added proper IPv6 detection.
2003-09-16 Hrvoje Niksic <[email protected]>
* Makefile.in (all): Don't build configure.bat by default.
2003-09-09 Hrvoje Niksic <[email protected]>
* configure.in, aclocal.m4: Added configure check for IPv6 and
getaddrinfo. From Daniel Stenberg.
2003-09-05 Maciej W. Rozycki <[email protected]>
* configure.in: Additional M4 quoting.
2003-09-04 Hrvoje Niksic <[email protected]>
* aclocal.m4, configure.in: Made them work under Autoconf 2.5x.
2002-05-27 Ian Abbott <[email protected]>
* windows/config.h.bor: Do #define WGET_USE_STDARG.
2002-05-20 Hrvoje Niksic <[email protected]>
* windows/config.h.ms: Ditto.
* windows/config.h.bor: Don't #define __STDC__.
2002-05-18 Hrvoje Niksic <[email protected]>
* ALL: Update the license to reflect the OpenSSL exception.
2002-04-23 Ian Abbott <[email protected]>
* windows/config.h.ms: Accounted for MSVC not defining `__STDC__' when
Microsoft's extensions are enabled and define it anyway (set to `1').
Defined some things that broke as a result of this.
2002-04-20 Hrvoje Niksic <[email protected]>
* po/de.po: Updated from the TP.
2001-04-15 Ian Abbott <[email protected]>
windows/wget.dep: The target `connect$o' (connect.obj) now depends on
`utils.h'.
2001-04-15 Hrvoje Niksic <[email protected]>
* po/da.po: Ditto.
* po/de.po: Ditto.
* po/el.po: Ditto.
* po/es.po: Ditto.
* po/et.po: Ditto.
* po/fr.po: Ditto.
* po/gl.po: Ditto.
* po/he.po: Ditto.
* po/ja.po: Ditto.
* po/pl.po: Ditto.
* po/sk.po: Ditto.
* po/sl.po: Ditto.
* po/sv.po: Ditto.
* po/tr.po: Ditto.
* po/zh_TW.po: Update from TP.
* po/ca.po: Ditto.
* po/bg.po: New file from TP.
2002-04-15 Hrvoje Niksic <[email protected]>
* po/hr.po: Editing the Project-Id-Version to say "wget" rather
than "GNU Wget".
2002-04-12 Ian Abbott <[email protected]>
* windows/Makefile.src.bor: Removed pre-compiled header options as
they increase build time (on my machine).
2002-04-12 Ian Abbott <[email protected]>