mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
Zoltan is added as thirdParty package
This commit is contained in:
27
thirdParty/Zoltan/config/tac_arg_with_incdirs.m4
vendored
Normal file
27
thirdParty/Zoltan/config/tac_arg_with_incdirs.m4
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
dnl @synopsis TAC_ARG_WITH_INCDIRS
|
||||
dnl
|
||||
dnl Test for --with-incdirs="-Iincdir1 -Iincdir2". if defined, prepend
|
||||
dnl "-Iincdir1 -Iincdir2" to CPPFLAGS
|
||||
dnl
|
||||
dnl Use this macro to facilitate addition of directories to include file search path.
|
||||
dnl
|
||||
dnl
|
||||
dnl @author Mike Heroux <mheroux@cs.sandia.gov>
|
||||
dnl
|
||||
AC_DEFUN([TAC_ARG_WITH_INCDIRS],
|
||||
[
|
||||
AC_MSG_CHECKING([whether additional include search paths defined])
|
||||
AC_ARG_WITH(incdirs,
|
||||
AC_HELP_STRING([--with-incdirs],
|
||||
[additional directories containing include files: will prepend to search here for includes, use -Idir format]),
|
||||
[
|
||||
CPPFLAGS="${withval} ${CPPFLAGS}"
|
||||
CFLAGS="${withval} ${CFLAGS}"
|
||||
FCFLAGS="${withval} ${FCFLAGS}"
|
||||
FFLAGS="${withval} ${FFLAGS}"
|
||||
AC_MSG_RESULT([${withval}])
|
||||
],
|
||||
AC_MSG_RESULT(no)
|
||||
)
|
||||
])
|
||||
|
Reference in New Issue
Block a user