mirror of
https://github.com/mirror/wget.git
synced 2025-03-13 11:20:19 +08:00
Don't require Perl for user builds.
This commit is contained in:
parent
2456d9bc54
commit
c794a7e826
@ -1,5 +1,7 @@
|
|||||||
2009-09-04 Micah Cowan <micah@cowan.name>
|
2009-09-04 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
|
* build-aux/build_info.pl: Moved from top directory.
|
||||||
|
|
||||||
* md5/*: Updated md5 from gnulib.
|
* md5/*: Updated md5 from gnulib.
|
||||||
|
|
||||||
* configure.ac: Configured build-aux/ as auxiliarry directory.
|
* configure.ac: Configured build-aux/ as auxiliarry directory.
|
||||||
@ -9,7 +11,7 @@
|
|||||||
build-aux/install-sh, build-aux/link-warning.h,
|
build-aux/install-sh, build-aux/link-warning.h,
|
||||||
build-aux/mdate-sh, build-aux/missing, build-aux/mkinstalldirs,
|
build-aux/mdate-sh, build-aux/missing, build-aux/mkinstalldirs,
|
||||||
build-aux/texinfo.tex, build-aux/useless-if-before-free,
|
build-aux/texinfo.tex, build-aux/useless-if-before-free,
|
||||||
build-aux/vc-list-files, build-aux/ylwrap: Moved from base
|
build-aux/vc-list-files, build-aux/ylwrap: Moved from top
|
||||||
directory.
|
directory.
|
||||||
|
|
||||||
* build-aux/announce-gen: Imported from gnulib.
|
* build-aux/announce-gen: Imported from gnulib.
|
||||||
|
@ -23,7 +23,7 @@ use warnings;
|
|||||||
use FindBin qw($Bin);
|
use FindBin qw($Bin);
|
||||||
use File::Spec ();
|
use File::Spec ();
|
||||||
|
|
||||||
my $file = File::Spec->catfile($Bin, 'src', 'build_info.c.in');
|
my $file = shift @ARGV;
|
||||||
|
|
||||||
{
|
{
|
||||||
my $data = parse_config();
|
my $data = parse_config();
|
@ -1,3 +1,9 @@
|
|||||||
|
2009-09-04 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
|
* Makefile.am: Move build_info.c to wget_SOURCES from
|
||||||
|
nodist_wget_SOURCES, reduce dependencies, and invoke build_info.pl
|
||||||
|
in its new home, $(top_srcdir)/build-aux.
|
||||||
|
|
||||||
2009-09-03 Micah Cowan <micah@cowan.name>
|
2009-09-03 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
* ftp-ls.c (ftp_parse_vms_ls): Replace use of localtime_r with
|
* ftp-ls.c (ftp_parse_vms_ls): Replace use of localtime_r with
|
||||||
|
@ -44,14 +44,14 @@ wget_SOURCES = cmpt.c connect.c convert.c cookies.c ftp.c \
|
|||||||
ftp-basic.c ftp-ls.c hash.c host.c html-parse.c html-url.c \
|
ftp-basic.c ftp-ls.c hash.c host.c html-parse.c html-url.c \
|
||||||
http.c init.c log.c main.c netrc.c progress.c ptimer.c \
|
http.c init.c log.c main.c netrc.c progress.c ptimer.c \
|
||||||
recur.c res.c retr.c snprintf.c spider.c url.c \
|
recur.c res.c retr.c snprintf.c spider.c url.c \
|
||||||
utils.c exits.c $(IRI_OBJ) \
|
utils.c exits.c build_info.c $(IRI_OBJ) \
|
||||||
css-url.h css-tokens.h connect.h convert.h cookies.h \
|
css-url.h css-tokens.h connect.h convert.h cookies.h \
|
||||||
ftp.h gen-md5.h hash.h host.h html-parse.h html-url.h \
|
ftp.h gen-md5.h hash.h host.h html-parse.h html-url.h \
|
||||||
http.h http-ntlm.h init.h log.h mswindows.h netrc.h \
|
http.h http-ntlm.h init.h log.h mswindows.h netrc.h \
|
||||||
options.h progress.h ptimer.h recur.h res.h retr.h \
|
options.h progress.h ptimer.h recur.h res.h retr.h \
|
||||||
spider.h ssl.h sysdep.h url.h utils.h wget.h iri.h \
|
spider.h ssl.h sysdep.h url.h utils.h wget.h iri.h \
|
||||||
exits.h gettext.h
|
exits.h gettext.h
|
||||||
nodist_wget_SOURCES = build_info.c version.c
|
nodist_wget_SOURCES = version.c
|
||||||
EXTRA_wget_SOURCES = mswindows.c iri.c
|
EXTRA_wget_SOURCES = mswindows.c iri.c
|
||||||
LDADD = $(LIBOBJS) ../lib/libgnu.a @MD5_LDADD@
|
LDADD = $(LIBOBJS) ../lib/libgnu.a @MD5_LDADD@
|
||||||
AM_CPPFLAGS = -I$(top_srcdir)/lib @MD5_CPPFLAGS@
|
AM_CPPFLAGS = -I$(top_srcdir)/lib @MD5_CPPFLAGS@
|
||||||
@ -62,8 +62,9 @@ AM_CPPFLAGS = -I$(top_srcdir)/lib @MD5_CPPFLAGS@
|
|||||||
../md5/libmd5.a:
|
../md5/libmd5.a:
|
||||||
cd ../lib && $(MAKE) $(AM_MAKEFLAGS)
|
cd ../lib && $(MAKE) $(AM_MAKEFLAGS)
|
||||||
|
|
||||||
build_info.c: $(wget_SOURCES) $(LDADD) $(srcdir)/Makefile.am
|
build_info.c: $(srcdir)/Makefile.am $(srcdir)/build_info.c.in
|
||||||
perl $(top_srcdir)/build_info.pl > $@
|
$(PERL) $(top_srcdir)/build-aux/build_info.pl \
|
||||||
|
$(srcdir)/build_info.c.in > $@
|
||||||
|
|
||||||
ESCAPEQUOTE = sed -e 's/[\\"]/\\&/g' -e 's/\\"/"/' -e 's/\\";$$/";/'
|
ESCAPEQUOTE = sed -e 's/[\\"]/\\&/g' -e 's/\\"/"/' -e 's/\\";$$/";/'
|
||||||
version.c: $(wget_SOURCES) $(LDADD) $(srcdir)/Makefile.am \
|
version.c: $(wget_SOURCES) $(LDADD) $(srcdir)/Makefile.am \
|
||||||
@ -81,8 +82,8 @@ version.c: $(wget_SOURCES) $(LDADD) $(srcdir)/Makefile.am \
|
|||||||
| $(ESCAPEQUOTE) >> $@
|
| $(ESCAPEQUOTE) >> $@
|
||||||
|
|
||||||
check_LIBRARIES = libunittest.a
|
check_LIBRARIES = libunittest.a
|
||||||
libunittest_a_SOURCES = $(wget_SOURCES) test.c test.h
|
libunittest_a_SOURCES = $(wget_SOURCES) test.c build_info.c test.h
|
||||||
nodist_libunittest_a_SOURCES = build_info.c version.c
|
nodist_libunittest_a_SOURCES = version.c
|
||||||
libunittest_a_CPPFLAGS = -DTESTING -I$(top_srcdir)/lib
|
libunittest_a_CPPFLAGS = -DTESTING -I$(top_srcdir)/lib
|
||||||
libunittest_a_LIBADD = $(LIBOBJS)
|
libunittest_a_LIBADD = $(LIBOBJS)
|
||||||
EXTRA_DIST = build_info.c.in
|
EXTRA_DIST = build_info.c.in
|
||||||
|
Loading…
Reference in New Issue
Block a user