Date: Mon, 31 May 2004 17:40:43 +0200 From: Andreas Klemm <andreas@FreeBSD.org> To: ade@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: bug in bsd.autotools.mk: doesn't honour autoconf259 Message-ID: <20040531154043.GA53086@titan.klemm.apsfilter.org>
next in thread | raw e-mail | index | archive | help
Hi, want to compile and install dspam developement version which needs newest "auto-tools": - autoconf 2.59 and - automake 1.8 Trying to compile automake18 from ports collection fails: root@titan[ttyp2]{290} /usr/ports/devel/automake18 make ===> automake-1.8.4_1 is marked as broken: unknown AUTOCONF version: 259. Reason is, that bsd.autotools.mk,v 1.1 only knows about autoconf versions: 213, 253, 257. This small patch helped to compile and install automake 1.8 successfully. Only don't know, if its ok to simply replace dev_acver=257 with 259. Maybe this breaks other ports ? cvs diff: Diffing . Index: bsd.autotools.mk =================================================================== RCS file: /export/ncvs/ports/Mk/bsd.autotools.mk,v retrieving revision 1.1 diff -u -r1.1 bsd.autotools.mk --- bsd.autotools.mk 19 Apr 2004 01:37:11 -0000 1.1 +++ bsd.autotools.mk 31 May 2004 15:36:24 -0000 @@ -19,7 +19,7 @@ # WANT_AUTOCONF_VER (PORT MAY SET THIS VALUE) # - Implies GNU_CONFIGURE=yes. # - Says that the port wants autoconf; legal values -# are: 213, 253, 257. +# are: 213, 253, 257, 259. # - Each specify a version of autoconf to use # and appropriatly set AUTOCONF{,_DIR} and other # autoconf-related program paths. @@ -123,7 +123,7 @@ dev_amver= 17 old_acver= 213 cur_acver= 253 -dev_acver= 257 +dev_acver= 259 ########## automake setup .if defined(USE_AUTOMAKE_VER) At least something has to be done, to make automake 1.8 compileable. Is this e-mail enough or do you need a PR as reminder ? Best regards Andreas /// -- Andreas Klemm - Powered by FreeBSD 5.1-CURRENT Need a magic printfilter today ? -> http://www.apsfilter.org/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040531154043.GA53086>