如何让cygwin禁用fortran?

如何让cygwin禁用fortran?,cygwin,gdal,hdf,Cygwin,Gdal,Hdf,我正在尝试使用Cygwin安装GDAL的HDF4库,自述文件指示我按如下方式配置源代码: ./configure <--disable-fortran> --enable-hdf4-xdr --with-zlib=/path_to_ZLIB_install_directory --with-jpeg=/path_to_JPEG_install_directory

我正在尝试使用Cygwin安装GDAL的HDF4库,自述文件指示我按如下方式配置源代码:

./configure <--disable-fortran> 
                   --enable-hdf4-xdr
                   --with-zlib=/path_to_ZLIB_install_directory 
                   --with-jpeg=/path_to_JPEG_install_directory 
                   <--with-szlib=/path_to_SZIP_install_directory>
                   --prefix=/path_to_HDF4_install_directory
我做错了什么?我是编程新手

编辑:


这是自述文件的链接:

正如丹尼斯所写,你误解了。在这方面 它们是可选的,不是必需的配置

 ./configure <--disable-fortran> 
              --enable-hdf4-xdr
              --with-zlib=/path_to_ZLIB_install_directory 
              --with-jpeg=/path_to_JPEG_install_directory 
              <--with-szlib=/path_to_SZIP_install_directory>
              --prefix=/path_to_HDF4_install_directory

今后,请提供指向说明的链接(如此处引用的自述)。我可以说(无引号)小于或大于(指出可选值。可能自述文件对此有所澄清?非常感谢。我尝试在Cygwin上执行--disable fortran,但它返回了我提到的上述错误。是否有其他方法在Cygwin上禁用fortran?执行禁用fortran的命令是否有更改?
--disable fortran
是co的一个选项。)n配置。它不是一个单独的命令
 ./configure <--disable-fortran> 
              --enable-hdf4-xdr
              --with-zlib=/path_to_ZLIB_install_directory 
              --with-jpeg=/path_to_JPEG_install_directory 
              <--with-szlib=/path_to_SZIP_install_directory>
              --prefix=/path_to_HDF4_install_directory
    ./configure --disable-fortran 
               --enable-hdf4-xdr
               --with-zlib=/path_to_ZLIB_install_directory 
               --with-jpeg=/path_to_JPEG_install_directory 
               --prefix=/path_to_HDF4_install_directory