Hello José,
The problem is that the TELEMAC code was updated and the declaration of the variables LNG (language) and LU (logical unit) are now made in a global module, therefore they cannot appear inside your fortran file. To correct this issue, just comment the lines:
INTEGER LNG,LU
COMMON/INFO/LNG,LU
Although, I highly recommend you to
don't do that. Instead, take your modifications from your v7p1 noerod.f and move them to the noerod.f from v7p2. This way you assure yourself that the code you are using is up to date and that it will not fail.
Best regards,
Phelype