Your message dated Mon, 7 Jan 2013 09:12:58 -0500
with message-id <[email protected]>
and subject line Re: Bug#9063: Is this bug still present?
has caused the Debian Bug report #9063,
regarding minor autoconf patch
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
9063: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=9063
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: autoconf
Version: 2.12-1
I've been trying to patch krb5 to use released versions of autoconf
and the various ss/db/et libraries instead of insisting on using its
own internal versions (my one big complaint about Athena software).
The following patch to autoconf (plus a few patches to krb5) allows
krb5 to be built (and re-autoconf) only using the stock autoconf. I
don't know if they'll be interested upstream, but I'm sending it to
you just in case:
--- autoconf-2.12.orig/autoheader.sh
+++ autoconf-2.12/autoheader.sh
@@ -89,7 +89,11 @@
fi
TEMPLATES="${AC_MACRODIR}/acconfig.h"
-test -r $localdir/acconfig.h && TEMPLATES="${TEMPLATES} $localdir/acconfig.h"
+if [ -r ./acconfig.h ]; then
+ TEMPLATES="${TEMPLATES} ./acconfig.h"
+elif [ -r $localdir/acconfig.h ]; then
+ TEMPLATES="${TEMPLATES} $localdir/acconfig.h"
+fi
case $# in
0) infile=configure.in ;;
--- End Message ---
--- Begin Message ---
Sounds like it was fixed long ago. Hard to believe it's been 15 years since I
filed that. Thanks for the cleanup work!
On Jan 6, 2013, at 10:27 PM, Olly Betts <[email protected]> wrote:
> On Sat, Jul 10, 1999 at 02:27:49PM -0400, Ben Pfaff wrote:
>> Is this bug, in which the last message recorded is from May 1997,
>> still relevant? If not, please let me know so that I can close it.
>
> The patch hasn't been applied by upstream, but in newer autoconf releases,
> autoheader (now rewritten in Perl) supports command line options to allow
> you to add entries to the search path. If you run recent autoheader with
> "--prepend-include=." then it should find acconfig.h in the current
> directory, which is apparently what the patch aims to accomplish.
>
> Looking at the krb5 package, src/configure in 1.10.1+dfsg-3 has:
>
> # Generated by GNU Autoconf 2.67 for Kerberos 5 1.10.1.
>
> And debian/patches/0010-autoreconf.patch suggests that's been regenerated
> by the debian maintainer, and upstream used 2.65, so it looks like krb no
> longer needs a patched autoconf.
>
> So it seems to me this bug should probably just be closed now.
>
> Cheers,
> Olly
smime.p7s
Description: S/MIME cryptographic signature
--- End Message ---