Re: removing g++ / g77 checks when using AM_PROG_LIBTOOL

2008-05-02 Thread Vincent Torri


Hey,


* Vincent Torri wrote on Thu, May 01, 2008 at 03:56:11PM CEST:

what is the best way to remove the checks of g++ and g77 when using
AM_PROG_LIBTOOL ?



define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])dnl
define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl


This one.


thank you


Note that the library can be used on old distributions, which can not be
upgraded to support newer libtool.


That's a straw man.  There is no need to run libtoolize on those
distributions.  Your tarball already contains all the stuff from
the new Libtool.


but it's possible that they need to run autogen.sh for a reason or 
another.


Vincent Torri


___
http://lists.gnu.org/mailman/listinfo/libtool


removing g++ / g77 checks when using AM_PROG_LIBTOOL

2008-05-01 Thread Vincent Torri


Hey,

what is the best way to remove the checks of g++ and g77 when using 
AM_PROG_LIBTOOL ?


that one:

m4_undefine([AC_PROG_CXX])
m4_defun([AC_PROG_CXX],[])
m4_undefine([AC_PROG_F77])
m4_defun([AC_PROG_F77],[])

or that one

define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])dnl
define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl

or something else ?

Note that the library can be used on old distributions, which can not be 
upgraded to support newer libtool.


thank you

Vincent Torri


___
http://lists.gnu.org/mailman/listinfo/libtool


Re: removing g++ / g77 checks when using AM_PROG_LIBTOOL

2008-05-01 Thread Ralf Wildenhues
Hello Vincent,

* Vincent Torri wrote on Thu, May 01, 2008 at 03:56:11PM CEST:
 what is the best way to remove the checks of g++ and g77 when using  
 AM_PROG_LIBTOOL ?

 define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])dnl
 define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl

This one.

 Note that the library can be used on old distributions, which can not be  
 upgraded to support newer libtool.

That's a straw man.  There is no need to run libtoolize on those
distributions.  Your tarball already contains all the stuff from
the new Libtool.

Cheers,
Ralf


___
http://lists.gnu.org/mailman/listinfo/libtool