Index: trunk/LMDZ.GENERIC/changelog.txt
===================================================================
--- trunk/LMDZ.GENERIC/changelog.txt	(revision 4061)
+++ trunk/LMDZ.GENERIC/changelog.txt	(revision 4062)
@@ -2172,2 +2172,6 @@
 Remove all the interpolateXY.F90 routines. Remove the bilinear and bilinearbig routines. RIP.
 More details here: https://lmdz-forge.lmd.jussieu.fr/mediawiki/Planets/index.php/Continuum_Database
+
+== 10/02/2026 == NC+EM
+Minor fix in "ini_slab_transp" so it can be compiled without the IOIPSL library
+at hand.
Index: trunk/LMDZ.GENERIC/libf/phygeneric/slab_heat_transp_mod.F90
===================================================================
--- trunk/LMDZ.GENERIC/libf/phygeneric/slab_heat_transp_mod.F90	(revision 4061)
+++ trunk/LMDZ.GENERIC/libf/phygeneric/slab_heat_transp_mod.F90	(revision 4062)
@@ -140,6 +140,10 @@
   SUBROUTINE ini_slab_transp(zmasq)
 
-!    USE ioipsl_getin_p_mod, only: getin_p
+! Since routine is called by master only, it should use getin, not getin_p
+#ifdef CPP_IOIPSL
     USE IOIPSL, ONLY : getin 
+#else
+    USE ioipsl_getincom, ONLY: getin
+#endif
     USE comcstfi_mod, ONLY: omeg, rad
     IMPLICIT NONE
