From: <arj...@us...> - 2013-05-02 01:25:04
|
Revision: 12321 http://sourceforge.net/p/plplot/code/12321 Author: arjenmarkus Date: 2013-05-02 01:24:58 +0000 (Thu, 02 May 2013) Log Message: ----------- Restore the default enabling for Fortran as the changes in the API have been propagated. Modified Paths: -------------- trunk/cmake/modules/fortran.cmake Modified: trunk/cmake/modules/fortran.cmake =================================================================== --- trunk/cmake/modules/fortran.cmake 2013-05-02 01:20:31 UTC (rev 12320) +++ trunk/cmake/modules/fortran.cmake 2013-05-02 01:24:58 UTC (rev 12321) @@ -27,7 +27,7 @@ option(ENABLE_f95 "Enable f95 bindings" OFF) else(DEFAULT_NO_BINDINGS) option(ENABLE_f77 "Enable f77 bindings" OFF) - option(ENABLE_f95 "Enable f95 bindings" OFF) + option(ENABLE_f95 "Enable f95 bindings" ON) endif(DEFAULT_NO_BINDINGS) if(ENABLE_f77 OR ENABLE_f95) @@ -63,12 +63,12 @@ endif(ENABLE_f95 AND NOT CMAKE_Fortran_COMPILER_SUPPORTS_F90) # Set installation location for f77 include files - set(F77_INCLUDE_DIR ${LIB_DIR}/fortran/include/${PACKAGE} + set(F77_INCLUDE_DIR ${LIB_DIR}/fortran/include/${PACKAGE} CACHE PATH "installation location for f95 modules" ) # Set installation location for f95 modules. - set(F95_MOD_DIR ${LIB_DIR}/fortran/modules/${PACKAGE} + set(F95_MOD_DIR ${LIB_DIR}/fortran/modules/${PACKAGE} CACHE PATH "installation location for f95 modules" ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |