In the src/libf/Makefile.in  you use a -e option to echo.   This option is not recognized in AIX.<br><br>In file src/lib/mpinetcdf.c  the macro here <br><br>    return &quot;version = &quot; PNETCDF_VERSION &quot;of 02 November 2009&quot;;<br>
<br>is not replaced correctly by cpp,  I think something like this would be better...<br><br>  return sprintf(&quot;version = %d.%d.%d&quot;,PNETCDF_VERSION_MAJOR,PNETCDF_VERSION_MINOR, PNETCDF_VERSION_SUB);}<br><br>