New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 14039 – NEMO

Changeset 14039


Ignore:
Timestamp:
2020-12-03T12:26:55+01:00 (3 years ago)
Author:
smasson
Message:

trunk: bugfix to compile without key_iomput

Location:
NEMO/trunk/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/src/ICE/icerst.F90

    r13970 r14039  
    9999               CALL iom_swap( cxios_context ) 
    100100#else 
    101                clinfo = 'Can not use XIOS in rst_opn' 
    102                CALL ctl_stop(TRIM(clinfo)) 
     101               CALL ctl_stop( 'Can not use XIOS in rst_opn' ) 
    103102#endif 
    104103            ENDIF 
  • NEMO/trunk/src/OCE/IOM/iom.F90

    r13982 r14039  
    2929   USE in_out_manager  ! I/O manager 
    3030   USE lib_mpp           ! MPP library 
    31 #if defined key_iomput 
    3231   USE sbc_oce  , ONLY :   nn_fsbc, ght_abl, ghw_abl, e3t_abl, e3w_abl, jpka, jpkam1 
    3332   USE icb_oce  , ONLY :   nclasses, class_num       !  !: iceberg classes 
     
    3736   USE phycst          ! physical constants 
    3837   USE dianam          ! build name of file 
     38#if defined key_iomput 
    3939   USE xios 
    4040# endif 
  • NEMO/trunk/src/TOP/PISCES/SED/sedrst.F90

    r13970 r14039  
    9494            CALL iom_init( cw_sedrst_cxt, kdid = numrsw, ld_closedef = .FALSE. ) 
    9595#else 
    96                clinfo = 'Can not use XIOS in trc_rst_opn' 
    97                CALL ctl_stop(TRIM(clinfo)) 
     96            CALL ctl_stop( 'Can not use XIOS in trc_rst_opn' ) 
    9897#endif 
    99             ENDIF 
     98         ENDIF 
    10099 
    101100         lrst_sed = .TRUE. 
  • NEMO/trunk/src/TOP/trcrst.F90

    r13970 r14039  
    105105            CALL iom_init( cw_toprst_cxt, kdid = numrtw, ld_closedef = .FALSE. ) 
    106106#else 
    107                clinfo = 'Can not use XIOS in trc_rst_opn' 
    108                CALL ctl_stop(TRIM(clinfo)) 
     107            CALL ctl_stop( 'Can not use XIOS in trc_rst_opn' ) 
    109108#endif 
    110             ENDIF 
     109         ENDIF 
    111110         lrst_trc = .TRUE. 
    112111      ENDIF 
Note: See TracChangeset for help on using the changeset viewer.