1
1

First cut at a configure.stub for elan -- needs to be filled in with

real tests.

This commit was SVN r1255.
Этот коммит содержится в:
Jeff Squyres 2004-06-14 23:22:14 +00:00
родитель 42419f9a7c
Коммит 65bfadf87f

47
src/mca/ptl/elan/configure.stub Обычный файл
Просмотреть файл

@ -0,0 +1,47 @@
# -*- shell-script -*-
#
# $HEADER$
#
#
# Main function. This will be invoked in the middle of the templated
# configure script.
#
AC_DEFUN([MCA_CONFIGURE_STUB],[
#
# elan ptl configure.stub
#
#
# ...do whatever you need to do here, like look for the Elan4
# libraries and header files. Built-in tests such as AC_CHECK_LIBS
# and AC_CHECK_HEADERS may be useful here. See the Autoconf docs ...
#
echo "Hello from elan configure.stub:MCA-CONFIGURE-STUB!"
#
# done with elan ptl configure.stub
#
])dnl
#
# Since MCA_CONFIGURE_STUB is not invoked when we are configured with
# --enable dist, we provide this alternate macro is that invoked
# instead. Not all modules will need this -- probably only modules
# thaty use AM_CONDITIONALS will require doing anything here. If you
# don't need it, you can remove this whole AC_DEFUN.
#
AC_DEFUN([MCA_CONFIGURE_DIST_STUB],[
#
# elan ptl configure-dist.stub
#
# ...probably only need this if have AM_CONDITIONALs in the
# MCA_CONFIGURE_STUB.
echo "Hello from elan configure.stub:MCA-CONFIGURE-DIST-STUB!"
#
# done with elan ptl configure-dist.stub
#
])dnl