mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-12 16:26:23 +00:00
Zoltan is added as thirdParty package
This commit is contained in:
24
thirdParty/Zoltan/config/tac_arg_with_libdirs.m4
vendored
Normal file
24
thirdParty/Zoltan/config/tac_arg_with_libdirs.m4
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
dnl @synopsis TAC_ARG_WITH_LIBDIRS
|
||||
dnl
|
||||
dnl Test for --with-libdirs="-Llibdir1 -Llibdir2". if defined,
|
||||
dnl prepend "-Llibdir1 -Llibdir2" to LDFLAGS
|
||||
dnl
|
||||
dnl Use this macro to facilitate addition of directories to library search path.
|
||||
dnl
|
||||
dnl
|
||||
dnl @author Mike Heroux <mheroux@cs.sandia.gov>
|
||||
dnl
|
||||
AC_DEFUN([TAC_ARG_WITH_LIBDIRS],
|
||||
[
|
||||
AC_MSG_CHECKING([whether additional library search paths defined])
|
||||
AC_ARG_WITH(libdirs,
|
||||
AC_HELP_STRING([--with-libdirs],
|
||||
[OBSOLETE use --with-ldflags instead. (ex. --with-ldflags="-L<DIR> -L<DIR2>")]),
|
||||
[
|
||||
LDFLAGS="${withval} ${LDFLAGS}"
|
||||
AC_MSG_RESULT([${withval}])
|
||||
],
|
||||
AC_MSG_RESULT(no)
|
||||
)
|
||||
])
|
||||
|
Reference in New Issue
Block a user