[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: DLLTOOL without LIBTOOL
From: |
Ralf Wildenhues |
Subject: |
Re: DLLTOOL without LIBTOOL |
Date: |
Fri, 2 Nov 2007 17:39:26 +0100 |
User-agent: |
Mutt/1.5.17 (2007-11-01) |
Hello NightStrike, whoever you are,
* NightStrike wrote on Fri, Nov 02, 2007 at 05:29:01PM CET:
> Currently, the macro AC_PROG_LIBTOOL will search for dlltool and
> define $(DLLTOOL) appropriately. If I only want dlltool itself and
> not the rest of the libtool package, is there some sort of
> AC_PROG_DLLTOOL macro available?
FWIW, all AC_PROG_LIBTOOL does with DLLTOOL is
AC_CHECK_TOOL(DLLTOOL, dlltool, false)
so you can just do that yourself.
> The issue is that I need ranlib, and
> using both AC_PROG_RANLIB And AC_PROG_LIBTOOL drops a warning.
AC_PROG_LIBTOOL checks for ranlib and sets RANLIB as well.
That's why you get the warning.
Cheers,
Ralf