| 
      
      
      From: Maurice L. <mj...@ga...> - 2001-05-03 18:36:44
      
     | 
| Joachim Geiger writes:
 > does anyone know how to tell autoconf which fortran compiler it
 > should take since under linux there are various possibilities, e.g.
 > gnu, nag, fujitsu, ... . Or is the only possibility to change the standards
 > to hack the config.status?
Two ways:
1. configure with:
    $ F77=<compiler> ./configure --enable-f77
2. create the file ~/config/cf_plplot.in and put in it:
F77=<compiler>
enable_f77="yes"
which the configure script will source the next time it's run.
If not set, F77 defaults to a system-specific value ("f77" on Linux).  If a
compiler is not found matching given name, one last-ditch effort using the
name "g77" is made before giving up and turning off f77 bindings.
-- 
Maurice LeBrun    mj...@ga...
 |