[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
I'm stuck in in GNU autoconf hell
- To: ports@openbsd.org
- Subject: I'm stuck in in GNU autoconf hell
- From: Claudio Jeker <cjeker@diehard.n-r-g.com>
- Date: Wed, 7 May 2003 14:42:04 +0200
- Content-Disposition: inline
- Mail-Followup-To: Claudio Jeker <cjeker@diehard.n-r-g.com>,ports@openbsd.org
- User-Agent: Mutt/1.3.27i
Hi all,
I'm trying to update my faac port but I can not configure the beast
because of the typical GNU autoconf/automake madness.
There is this bootstrap script:
#! /bin/sh
aclocal -I .
autoheader
libtoolize --automake
automake --add-missing
autoconf
Now my problem is that it needs a new autoconf because of the
AC_CHECK_TYPES() makro.
So I created the following pre-configure target
pre-configure:
cd ${WRKDIST} && \
aclocal-1.4 -I . && \
autoheader-2.52 && \
libtoolize --automake && \
automake-1.4 --add-missing && \
autoconf-2.52
After that I have a configure script but this gives up with:
loading cache /dev/null within ltconfig
ltconfig: you must specify a host type if you use `--no-verify'
Try `ltconfig --help' for more information.
configure: error: libtool configure failed
*** Error code 1
Any ideas? Does a simpler sollution exist?
thanks
--
:wq Claudio