libtool
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: problem bootstrapping


From: Markus Duft
Subject: Re: problem bootstrapping
Date: Thu, 02 Apr 2009 09:07:37 +0200

On Wed, 2009-04-01 at 20:54 +0200, Ralf Wildenhues wrote:
> Hello Markus,
> 
> * Markus Duft wrote on Wed, Apr 01, 2009 at 03:12:14PM CEST:
> > 
> > after upgrading to libtool 2.2.6a, i'm having problems bootstrapping one
> > of our packages. the message i get is attached (output of aclocal
> > --verbose -I /tools/eprefix/mduft/usr/bin/../share/aclocal > out 2>&1),
> > as is the configure.ac. the configure.ac is generated from confix.
> 
> > i must admit that i havent' excessively traced the problem, since i keep
> > getting headaches reading m4 everytime i try :) so i'm still unsure
> > wether it's autoconf or libtool causing problems...
> 
> Please post the versions of Autoconf and Automake you are using.  Please
> post pointers to the third-party macro files you are using.

Hi!

Versions are those:

aclocal (GNU automake) 1.10.2
libtoolize (GNU libtool) 2.2.6
autoconf (GNU Autoconf) 2.63

third party macros are from autoconf-archive (latest version from [1]),
with the exception of the CONFIX_* macros, which are local to our
company and posted here:

AC_DEFUN([CONFIX_BOOST_THREAD],
[
  AC_REQUIRE([CONFIX_BOOST_BASE])
  AC_ARG_WITH([boost-thread], [], [],
[with_boost_thread="boost_thread-mt"])
  AX_BOOST_THREAD
])

AC_DEFUN([CONFIX_BOOST_BASE], [
  AC_REQUIRE([AC_CANONICAL_HOST])
  AC_ARG_WITH([boost], [], [], [with_boost="yes"])
  test "x$with_boost" != "xyes" || with_boost="/nonexistent"
  AX_BOOST_BASE
  BOOST_CPPFLAGS=`echo " ${BOOST_CPPFLAGS} " | sed -e 's,
-I/nonexistent/include ,,g; s,^ *,,; s, *$,,'`
  BOOST_LDFLAGS=`echo " ${BOOST_LDFLAGS} " | sed -e 's,
-L/nonexistent/lib ,,g; s,^ *,,; s, *$,,'`

  case $host in
  *-*-winnt*)
      BOOST_CPPFLAGS="$BOOST_CPPFLAGS -DBOOST_THREAD_USE_DLL
-DBOOST_ALL_DYN_LINK"
      ;;
  esac
])

[1] http://autoconf-archive.cryp.to/autoconf-archive-2008-11-07.tar.bz2

Thanks, Cheers, Markus

> 
> Thanks,
> Ralf




reply via email to

[Prev in Thread] Current Thread [Next in Thread]