Changeset 17240
- Timestamp:
- 02/07/14 15:58:49 (11 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/m4/issm_options.m4
r17236 r17240 1669 1669 AC_MSG_RESULT($HAVE_BALANCEVELOCITY) 1670 1670 dnl }}} 1671 dnl with-L2ProjectionEPL{{{ 1672 AC_ARG_WITH([L2ProjectionEPL], 1673 AS_HELP_STRING([--with-L2ProjectionEPL = YES], [compile with L2ProjectionEPL capabilities (default is yes)]), 1674 [L2PROJECTIONEPL=$withval],[L2PROJECTIONEPL=yes]) 1675 AC_MSG_CHECKING(for L2ProjectionEPL capability compilation) 1676 1677 HAVE_L2PROJECTIONEPL=no 1678 if test "x$L2PROJECTIONEPL" = "xyes"; then 1679 HAVE_L2PROJECTIONEPL=yes 1680 AC_DEFINE([_HAVE_L2PROJECTIONEPL_],[1],[with L2ProjectionEPL capability]) 1681 fi 1682 AM_CONDITIONAL([L2PROJECTIONEPL], [test x$HAVE_L2PROJECTIONEPL = xyes]) 1683 AC_MSG_RESULT($HAVE_L2PROJECTIONEPL) 1684 dnl }}} 1671 1685 dnl with-L2ProjectionBase{{{ 1672 1686 AC_ARG_WITH([L2ProjectionBase], … … 1892 1906 AM_CONDITIONAL([THERMAL], [test x$HAVE_THERMAL = xyes]) 1893 1907 AC_MSG_RESULT($HAVE_THERMAL) 1908 dnl }}} 1909 dnl with-SmoothedSurfaceSlopeX{{{ 1910 AC_ARG_WITH([SmoothedSurfaceSlopeX], 1911 AS_HELP_STRING([--with-SmoothedSurfaceSlopeX = YES], [compile with SmoothedSurfaceSlopeX capabilities (default is yes)]), 1912 [SMOOTHEDSURFACESLOPEX=$withval],[SMOOTHEDSURFACESLOPEX=yes]) 1913 AC_MSG_CHECKING(for SmoothedSurfaceSlopeX capability compilation) 1914 1915 HAVE_SMOOTHEDSURFACESLOPEX=no 1916 if test "x$SMOOTHEDSURFACESLOPEX" = "xyes"; then 1917 HAVE_SMOOTHEDSURFACESLOPEX=yes 1918 AC_DEFINE([_HAVE_SMOOTHEDSURFACESLOPEX_],[1],[with SmoothedSurfaceSlopeX capability]) 1919 fi 1920 AM_CONDITIONAL([SMOOTHEDSURFACESLOPEX], [test x$HAVE_SMOOTHEDSURFACESLOPEX = xyes]) 1921 AC_MSG_RESULT($HAVE_SMOOTHEDSURFACESLOPEX) 1922 dnl }}} 1923 dnl with-SmoothedSurfaceSlopeY{{{ 1924 AC_ARG_WITH([SmoothedSurfaceSlopeY], 1925 AS_HELP_STRING([--with-SmoothedSurfaceSlopeY = YES], [compile with SmoothedSurfaceSlopeY capabilities (default is yes)]), 1926 [SMOOTHEDSURFACESLOPEY=$withval],[SMOOTHEDSURFACESLOPEY=yes]) 1927 AC_MSG_CHECKING(for SmoothedSurfaceSlopeY capability compilation) 1928 1929 HAVE_SMOOTHEDSURFACESLOPEY=no 1930 if test "x$SMOOTHEDSURFACESLOPEY" = "xyes"; then 1931 HAVE_SMOOTHEDSURFACESLOPEY=yes 1932 AC_DEFINE([_HAVE_SMOOTHEDSURFACESLOPEY_],[1],[with SmoothedSurfaceSlopeY capability]) 1933 fi 1934 AM_CONDITIONAL([SMOOTHEDSURFACESLOPEY], [test x$HAVE_SMOOTHEDSURFACESLOPEY = xyes]) 1935 AC_MSG_RESULT($HAVE_SMOOTHEDSURFACESLOPEY) 1894 1936 dnl }}} 1895 1937 dnl with-Meshdeformation{{{ -
issm/trunk-jpl/src/c/Makefile.am
r17238 r17240 542 542 issm_sources += ./analyses/HydrologyDCEfficientAnalysis.cpp 543 543 endif 544 if L2PROJECTIONEPL 545 issm_sources += ./analyses/L2ProjectionEPLAnalysis.cpp 546 endif 544 547 if MELTING 545 548 issm_sources += ./analyses/MeltingAnalysis.cpp … … 562 565 if THERMAL 563 566 issm_sources += ./analyses/ThermalAnalysis.cpp 567 endif 568 if SMOOTHEDSURFACESLOPEX 569 issm_sources += ./analyses/SmoothedSurfaceSlopeXAnalysis.cpp 570 endif 571 if SMOOTHEDSURFACESLOPEY 572 issm_sources += ./analyses/SmoothedSurfaceSlopeYAnalysis.cpp 564 573 endif 565 574 if MESHDEFORMATION -
issm/trunk-jpl/src/c/analyses/StressbalanceAnalysis.cpp
r17230 r17240 802 802 803 803 /*Create Riffront loads for rifts: */ 804 #ifdef _HAVE_RIFTS_805 804 if(numrifts){ 806 805 iomodel->FetchData(&riftinfo,&numriftsegments,NULL,RiftsRiftstructEnum); … … 815 814 xDelete<IssmDouble>(riftinfo); 816 815 } 817 #endif818 816 }/*}}}*/ 819 817
Note:
See TracChangeset
for help on using the changeset viewer.