Skip to content

Commit

Permalink
Merge branch 'master' into meshfree_interp
Browse files Browse the repository at this point in the history
  • Loading branch information
benkirk committed Dec 26, 2012
2 parents 5a25390 + b8cb652 commit a9bf681
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 25 deletions.
9 changes: 7 additions & 2 deletions configure
Expand Up @@ -28823,9 +28823,11 @@ else
fi



fi



fi


Expand All @@ -28842,8 +28844,7 @@ $as_echo "<<< Configuring library with AztecOO support >>>" >&6; }
ac_fn_cxx_check_header_mongrel "$LINENO" "$withtrilinosdir/include/NOX_Config.h" "$as_ac_Header" "$ac_includes_default"
if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
enablenox=yes
else
as_ac_Header=`$as_echo "ac_cv_header_$withtrilinosdir/NOX_Config.h" | $as_tr_sh`
as_ac_Header=`$as_echo "ac_cv_header_$withtrilinosdir/NOX_Config.h" | $as_tr_sh`
ac_fn_cxx_check_header_mongrel "$LINENO" "$withtrilinosdir/NOX_Config.h" "$as_ac_Header" "$ac_includes_default"
if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
enablenox=yes
Expand All @@ -28857,9 +28858,11 @@ else
fi



fi



fi


Expand Down Expand Up @@ -28891,9 +28894,11 @@ else
fi



fi



fi


Expand Down
4 changes: 2 additions & 2 deletions doc/html/publications.php
Expand Up @@ -91,13 +91,13 @@
G.&nbsp;Bornia.
<em>Analysis of optimal control problems for the incompressible MHD
equations and implementation in a finite element multiphysics code</em>.
PhD thesis, Universit&aacute; di Bologna, 2012.
PhD thesis, Universit&agrave; di Bologna, 2012.

<a href="http://amsdottorato.cib.unibo.it/4868/1/giorgio_bornia_tesi.pdf">http://amsdottorato.cib.unibo.it/4868/1/giorgio_bornia_tesi.pdf</a>.
<a name="Bornia_thesis"></a><pre>
@phdthesis{Bornia_thesis,
author = {G.~Bornia},
school = {Universit\'{a} di Bologna},
school = {Universit\`{a} di Bologna},
title = {{Analysis of optimal control problems for the incompressible MHD equations and implementation in a finite element multiphysics code}},
note = {\url{http://amsdottorato.cib.unibo.it/4868/1/giorgio_bornia_tesi.pdf}},
year = {2012}
Expand Down
48 changes: 27 additions & 21 deletions m4/trilinos.m4
Expand Up @@ -35,13 +35,15 @@ AC_DEFUN([CONFIGURE_TRILINOS_10],
dnl ------------------------------------------------------
dnl AztecOO
dnl ------------------------------------------------------
AC_CHECK_HEADER($withtrilinosdir/include/AztecOO_config.h,
enableaztecoo=yes,
AC_CHECK_HEADER($withtrilinosdir/AztecOO_config.h,
enableaztecoo=yes,
AC_CHECK_HEADER($withtrilinosdir/packages/aztecoo/src/AztecOO_config.h,
enableaztecoo=yes,
enableaztecoo=no)))
AC_CHECK_HEADER([$withtrilinosdir/include/AztecOO_config.h],
[enableaztecoo=yes],
[AC_CHECK_HEADER([$withtrilinosdir/AztecOO_config.h],
[enableaztecoo=yes],
[AC_CHECK_HEADER([$withtrilinosdir/packages/aztecoo/src/AztecOO_config.h],
[enableaztecoo=yes],
[enableaztecoo=no])
])
])
if test "$enableaztecoo" != no ; then
AC_DEFINE(HAVE_AZTECOO, 1,
Expand All @@ -52,13 +54,15 @@ AC_DEFUN([CONFIGURE_TRILINOS_10],
dnl ------------------------------------------------------
dnl NOX
dnl ------------------------------------------------------
AC_CHECK_HEADER($withtrilinosdir/include/NOX_Config.h,
enablenox=yes,
AC_CHECK_HEADER($withtrilinosdir/NOX_Config.h,
enablenox=yes,
AC_CHECK_HEADER($withtrilinosdir/packages/nox/src/NOX_Config.h,
enablenox=yes,
enablenox=no)))
AC_CHECK_HEADER([$withtrilinosdir/include/NOX_Config.h],
[enablenox=yes]
[AC_CHECK_HEADER([$withtrilinosdir/NOX_Config.h],
[enablenox=yes],
[AC_CHECK_HEADER([$withtrilinosdir/packages/nox/src/NOX_Config.h],
[enablenox=yes],
[enablenox=no])
])
])
if test "$enablenox" != no ; then
AC_DEFINE(HAVE_NOX, 1,
Expand All @@ -69,13 +73,15 @@ AC_DEFUN([CONFIGURE_TRILINOS_10],
dnl ------------------------------------------------------
dnl ML
dnl ------------------------------------------------------
AC_CHECK_HEADER($withtrilinosdir/include/ml_include.h,
enableml=yes,
AC_CHECK_HEADER($withtrilinosdir/ml_include.h,
enableml=yes,
AC_CHECK_HEADER($withtrilinosdir/packages/ml/src/Include/ml_include.h,
enableml=yes,
enableml=no)))
AC_CHECK_HEADER([$withtrilinosdir/include/ml_include.h],
[enableml=yes],
[AC_CHECK_HEADER([$withtrilinosdir/ml_include.h],
[enableml=yes],
[AC_CHECK_HEADER([$withtrilinosdir/packages/ml/src/Include/ml_include.h],
[enableml=yes],
[enableml=no])
])
])
if test "$enableml" != no ; then
AC_DEFINE(HAVE_ML, 1,
Expand Down

0 comments on commit a9bf681

Please sign in to comment.