Page 1 of 1

Warning about --enable-libtool-verbose

Posted: 2009-11-08T17:39:16-07:00
by fmw42
IM 6.5.7.x Q16 Mac OSX Tiger

In the last few releases, I have noticed a Warning that I never got before about one of the configuration items.

config.status: executing Magick++-config.in commands
config.status: executing PerlMagick/check.sh.in commands
configure: WARNING: unrecognized options: --enable-libtool-verbose


What has this been changed to or why has it been removed.

This is the configure command per recommendations by Magick a long time ago.

./configure --enable-delegate-build --enable-shared --disable-static \
--with-modules --with-quantum-depth=16 --with-gslib --without-wmf \
--enable-libtool-verbose --disable-dependency-tracking \
--with-gs-font-dir=/usr/local/share/ghostscript/fonts/ --with-lqr

Anything to be concerned about? Should I just remove it?

Re: Warning about --enable-libtool-verbose

Posted: 2009-11-08T17:47:29-07:00
by magick
The --enable-libtool-verbose configure option is no longer needed now that we have silent build capability introduced by recent releases of automake / autoconf / libtool. You can safely remove this option, use --disable-silent-rules instead.

Re: Warning about --enable-libtool-verbose

Posted: 2009-11-08T17:59:54-07:00
by fmw42
thanks