Changeset 19985


Ignore:
Timestamp:
01/22/16 09:57:26 (9 years ago)
Author:
Eric.Larour
Message:

CHG: new sea level rise hook up for the configure script.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/m4/analyses.m4

    r19720 r19985  
    894894
    895895dnl }}}
     896dnl with-Sealevelrise{{{
     897
     898AC_ARG_WITH([Sealevelrise],
     899
     900        AS_HELP_STRING([--with-Sealevelrise = YES], [compile with Sealevelrise capabilities (default is yes)]),
     901
     902        [SEALEVELRISE=$withval],[SEALEVELRISE=yes])
     903
     904AC_MSG_CHECKING(for Sealevelrise capability compilation)
     905
     906
     907HAVE_SEALEVELRISE=no
     908
     909if test "x$SEALEVELRISE" = "xyes"; then
     910
     911        HAVE_SEALEVELRISE=yes
     912
     913        AC_DEFINE([_HAVE_SEALEVELRISE_],[1],[with Sealevelrise capability])
     914
     915fi
     916
     917AM_CONDITIONAL([SEALEVELRISE], [test x$HAVE_SEALEVELRISE = xyes])
     918
     919AC_MSG_RESULT($HAVE_SEALEVELRISE)
     920
     921dnl }}}
    896922
    897923])
Note: See TracChangeset for help on using the changeset viewer.