Документ взят из кэша поисковой машины. Адрес оригинального документа : http://xmm.vilspa.esa.es/pipermail/sas-uploads/2009-February/010531.html
Дата изменения: Tue Feb 24 21:02:06 2009
Дата индексирования: Sun Apr 5 22:07:43 2009
Кодировка:

Поисковые слова: http astrokuban.info astrokuban
[sas-uploads] sas-1.490.tgz

[sas-uploads] sas-1.490.tgz

SAS Builds - xmmls11 Eduardo Ojero Pascual (SAS Integration - XMM-Newton SOC) <eduardo.ojero@sciops.esa.int>
Tue, 24 Feb 2009 16:38:51 GMT


Package: sas-1.490.tgz - 401151 B
MD5: a8603fadcc68a846f9705b1dcfdda19a
Uploaded by: Eduardo Ojero Pascual (SAS Integration - XMM-Newton SOC) <eduardo.ojero@sciops.esa.int>
Accepted on: Tue Feb 24 16:38:51 2009 UTC
The most recent ChangeLog entry says:

Version 1.490 - 2009-02-23 (EO)
-------------
	+ configure.in: 
	  * Added test for NAG Fortran Compiler version 5.2. 
	    With this version they changed the name of the 
	    binary from f95 to nagfor.
	    Now the configure must check both f95 for compatibility 
	    with f95 NAG Fortran (until version 5.1) and for new nagfor.
	    On some systems (e.g. RHEL5 64) besides the f95 NAG Fortran 
	    Compiler, there exists an f95 Fortran Compiler, which is 
	    usually a soft link to the GNU gfortran Fortran Compiler.
	    Therefore, configure.in must be able to distinguish between
	    the old f95 (versions 4.2, 5.0 and 5.1) NAG Fortran Compiler,
	    the f95 as gfortran and the new NAG nagfor.
	  * Despite no changes were made to the specific code 
	    to check for the "echo" command, it does not work in Solaris. 
	    Due to the higher version of autoconf (2.63) as compared to
	    the one on Solaris (2.13), configure can not capture properly 
	    how to work with Solaris echo. As a fix, the macro to check
	    for echo has been modified as follows:
	    AC_PATH_PROG(ECHO,echo,echo,/bin:/usr/bin) is replaced by
	    AC_PATH_PROG(ECHO,echo,echo,)
	    The consequence is that echo is looked for in the PATH
	    variable set by the builder for software builds. 
	    We recommend to put GNU echo in such a PATH (GNU coreutils).
	  * Added code to define TARGET_OS for SunOS (Solaris).