# HG changeset patch # User Andrew John Hughes # Date 1455558520 0 # Node ID e9935e163815dad1191d47ab0a216276beebb947 # Parent 412e3ce4141e2ddb01c8fb099fc0823d783e7b3d PR2849: wget not required when downloading is disabled 2016-02-15 Andrew John Hughes PR2849: wget not required when downloading is disabled * NEWS: Updated. * configure.ac: Only check for wget if downloading is enabled. diff -r 412e3ce4141e -r e9935e163815 ChangeLog --- a/ChangeLog Mon Jan 25 22:06:42 2016 +0000 +++ b/ChangeLog Mon Feb 15 17:48:40 2016 +0000 @@ -1,3 +1,10 @@ +2016-02-15 Andrew John Hughes + + PR2849: wget not required when downloading is disabled + * NEWS: Updated. + * configure.ac: + Only check for wget if downloading is enabled. + 2016-01-25 Andrew John Hughes * Makefile.am: diff -r 412e3ce4141e -r e9935e163815 NEWS --- a/NEWS Mon Jan 25 22:06:42 2016 +0000 +++ b/NEWS Mon Feb 15 17:48:40 2016 +0000 @@ -26,6 +26,7 @@ * Bug fixes - PR1886: IcedTea does not checksum supplied tarballs - PR2083: Add support for building Zero on AArch64 + - PR2849: wget not required when downloading is disabled New in release 1.13.10 (2016-01-22): diff -r 412e3ce4141e -r e9935e163815 configure.ac --- a/configure.ac Mon Jan 25 22:06:42 2016 +0000 +++ b/configure.ac Mon Feb 15 17:48:40 2016 +0000 @@ -33,7 +33,6 @@ IT_FIND_TOOL([TAR], [tar]) IT_FIND_TOOL([CHMOD], [chmod]) IT_FIND_TOOL([SHA256SUM], [sha256sum]) -IT_FIND_TOOL([WGET], [wget]) IT_FIND_TOOL([ZIP], [zip]) IT_FIND_TOOL([UNZIP], [unzip]) IT_FIND_TOOL([CPIO], [cpio]) @@ -268,6 +267,9 @@ IT_FIND_ECJ_JAR IT_FIND_TOOL([XSLTPROC], [xsltproc]) fi +if test "x$enable_downloading" = "xyes"; then + IT_FIND_TOOL([WGET], [wget]) +fi IT_USING_CACAO AC_CONFIG_FILES([javac], [chmod +x javac]) AC_CONFIG_FILES([javap], [chmod +x javap])