The fink g77 does not handle C include files correctly.
 
Thus it does not handle the #include "filename" correctly as shown in the code bellow.
 
The example below includes two test files test.F and maxdim.h
 
They compile great on other g77 compilers using :g77 -c test.F
 
However the fink g77 breaks down on the #include
 
Any Ideas of how to fix this?
Thanks,
 
 
test.F
 
      SUBROUTINE test()
      c---------------------------------------------------------------------72
      c     Header files.
      #include "maxdim.h"
             INTEGER icc
      c---------------------------------------------------------------------72
            icc = 0.0
            end
 
maxdim.h
 
       INTEGER
           &   NUMAT_P
     
            PARAMETER (NUMAT_P  = 2)
 
 

Reply via email to