diff --git a/src/mca/ptl/elan/configure.stub b/src/mca/ptl/elan/configure.stub new file mode 100644 index 0000000000..fc4bc2d7d2 --- /dev/null +++ b/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