Samuel Meder <[EMAIL PROTECTED]> writes:
>
> I'm using the latest alpha libtool alpha (1.4d) and would like to be
> able to turn of detection of the C++ compiler and preprocessor.

I've had some joy from setting a default value for --with-tags, as per
the following with $want_cxx determining whether c++ is desired.  I
don't know if this is kosher or not, but it has the effect of
supressing tests relating to GCJ and (on mingw) RC too.

if test "${with_tags+set}" != set; then
  if test $want_cxx = yes; then
    with_tags=CXX
  else
    with_tags=
  fi
fi

_______________________________________________
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool

Reply via email to