Re: [PATCH] 1.11.4: Add missing $(datarootdir)

2008-08-08 Thread Maciej W. Rozycki
Hi Micah,

> We're not anticipating any further 1.11.x releases for Wget. Active
> development for most of the last year has focused on 1.12, which is
> based on Automake (so we get datarootdir for free).

 Hmm, I must have missed that bit, but if I said I had been following the
discussion at the wget mailing list, that would be an overstatement. ;)

> But if any significant bugs are found in 1.11.4 that warrant a new
> 1.11.x release, we'll add this patch in.

 No problem -- I just thought I would share a fix for what I discovered.  
Feel free to use it however you like.

  Maciej


Re: [PATCH] 1.11.4: Add missing $(datarootdir)

2008-08-08 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Maciej W. Rozycki wrote:
> Hello,
> 
>  Here is a change that adds $(datarootdir) throughout that has been missed 
> despite the prominent warning output by ./configure. :-(
> 
> 2008-08-09  Maciej W. Rozycki  <[EMAIL PROTECTED]>
> 
>   * Makefile.in (datarootdir): Add definition.
>   * doc/Makefile.in (datarootdir): Likewise.
>   * src/Makefile.in (datarootdir): Likewise.
>   * tests/Makefile.in (datarootdir): Likewise.
> 
>  Please apply.
> 
>   Maciej

Hi Maciej,

We're not anticipating any further 1.11.x releases for Wget. Active
development for most of the last year has focused on 1.12, which is
based on Automake (so we get datarootdir for free).

But if any significant bugs are found in 1.11.4 that warrant a new
1.11.x release, we'll add this patch in.

- --
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer.
GNU Maintainer: wget, screen, teseq
http://micah.cowan.name/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFInM4p7M8hyUobTrERAm6zAJ4sLyVEIkq/VVQ2XKylIKPDrNewSwCfUsIH
rFK6XiRKYgVo/yZiU8Nf2iI=
=gLU4
-END PGP SIGNATURE-


[PATCH] 1.11.4: Add missing $(datarootdir)

2008-08-08 Thread Maciej W. Rozycki
Hello,

 Here is a change that adds $(datarootdir) throughout that has been missed 
despite the prominent warning output by ./configure. :-(

2008-08-09  Maciej W. Rozycki  <[EMAIL PROTECTED]>

* Makefile.in (datarootdir): Add definition.
* doc/Makefile.in (datarootdir): Likewise.
* src/Makefile.in (datarootdir): Likewise.
* tests/Makefile.in (datarootdir): Likewise.

 Please apply.

  Maciej

wget-1.11.4-datarootdir.patch
diff -up --recursive --new-file wget-1.11.4.macro/Makefile.in 
wget-1.11.4/Makefile.in
--- wget-1.11.4.macro/Makefile.in   2008-05-29 03:29:54.0 +
+++ wget-1.11.4/Makefile.in 2008-08-08 22:29:08.0 +
@@ -47,6 +47,7 @@ VPATH  = @srcdir@
 #
 prefix  = @prefix@
 exec_prefix = @exec_prefix@
+datarootdir = @datarootdir@
 bindir  = @bindir@
 infodir = @infodir@
 sysconfdir  = @sysconfdir@
diff -up --recursive --new-file wget-1.11.4.macro/doc/Makefile.in 
wget-1.11.4/doc/Makefile.in
--- wget-1.11.4.macro/doc/Makefile.in   2008-04-27 04:48:19.0 +
+++ wget-1.11.4/doc/Makefile.in 2008-08-08 22:31:03.0 +
@@ -37,6 +37,7 @@ srcdir = @srcdir@
 VPATH  = @srcdir@
 
 prefix = @prefix@
+datarootdir= @datarootdir@
 infodir= @infodir@
 mandir = @mandir@
 manext = 1
diff -up --recursive --new-file wget-1.11.4.macro/src/Makefile.in 
wget-1.11.4/src/Makefile.in
--- wget-1.11.4.macro/src/Makefile.in   2008-04-27 04:48:21.0 +
+++ wget-1.11.4/src/Makefile.in 2008-08-08 22:30:29.0 +
@@ -40,6 +40,7 @@ VPATH  = @srcdir@
 
 prefix   = @prefix@
 exec_prefix  = @exec_prefix@
+datarootdir  = @datarootdir@
 bindir   = @bindir@
 sysconfdir   = @sysconfdir@
 datadir  = @datadir@
diff -up --recursive --new-file wget-1.11.4.macro/tests/Makefile.in 
wget-1.11.4/tests/Makefile.in
--- wget-1.11.4.macro/tests/Makefile.in 2008-04-27 04:48:24.0 +
+++ wget-1.11.4/tests/Makefile.in   2008-08-08 22:31:11.0 +
@@ -40,6 +40,7 @@ VPATH  = @srcdir@
 
 prefix   = @prefix@
 exec_prefix  = @exec_prefix@
+datarootdir  = @datarootdir@
 bindir   = @bindir@
 sysconfdir   = @sysconfdir@
 datadir  = @datadir@