1
1

Add option for bug 625 -- conditionally install LAM development header

files

This commit was SVN r132.
Этот коммит содержится в:
Jeff Squyres 2004-01-08 21:42:49 +00:00
родитель b41e09c8f7
Коммит ce38ccf332

Просмотреть файл

@ -113,6 +113,23 @@ else
fi
AM_CONDITIONAL(WANT_SINGLE_MPI_LIBRARY, test "$WANT_SINGLE_MPI_LIBRARY" = 1)
#
# Do we want to install all of LAM's header files?
#
AC_MSG_CHECKING([if want to install LAM header files])
AC_ARG_WITH(devel-headers,
AC_HELP_STRING([--with-devel-headers],
[normal MPI users/applications do not need this (mpi.h and mpif.h are ALWAYS installed). Developer headers are only necessary for MCA module authors (default: disabled).]))
if test "$with_devel_headers" != "yes"; then
AC_MSG_RESULT([no])
WANT_INSTALL_HEADERS=0
else
AC_MSG_RESULT([yes])
WANT_INSTALL_HEADERS=1
fi
AM_CONDITIONAL(WANT_INSTALL_HEADERS, test "$WANT_INSTALL_HEADERS" = 1)
#
# Do we want profiling?
#