From: <ai...@us...> - 2009-10-26 21:56:50
|
Revision: 10554 http://plplot.svn.sourceforge.net/plplot/?rev=10554&view=rev Author: airwin Date: 2009-10-26 21:56:44 +0000 (Mon, 26 Oct 2009) Log Message: ----------- Put F95_MOD_DIR variable in the cache so that it can be modified by the user. Modified Paths: -------------- trunk/cmake/modules/fortran.cmake Modified: trunk/cmake/modules/fortran.cmake =================================================================== --- trunk/cmake/modules/fortran.cmake 2009-10-26 17:05:13 UTC (rev 10553) +++ trunk/cmake/modules/fortran.cmake 2009-10-26 21:56:44 UTC (rev 10554) @@ -63,7 +63,9 @@ endif(ENABLE_f95 AND NOT CMAKE_Fortran_COMPILER_SUPPORTS_F90) # 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" + ) # Check if f77/f95 style command line parsing is possible include(TestF77CmdLine) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
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. |
From: <and...@us...> - 2013-12-12 19:51:16
|
Revision: 12856 http://sourceforge.net/p/plplot/code/12856 Author: andrewross Date: 2013-12-12 19:51:12 +0000 (Thu, 12 Dec 2013) Log Message: ----------- Fix case of variable name in cmake fortran support. Modified Paths: -------------- trunk/cmake/modules/fortran.cmake Modified: trunk/cmake/modules/fortran.cmake =================================================================== --- trunk/cmake/modules/fortran.cmake 2013-12-12 18:49:15 UTC (rev 12855) +++ trunk/cmake/modules/fortran.cmake 2013-12-12 19:51:12 UTC (rev 12856) @@ -28,13 +28,13 @@ option(ENABLE_f95 "Enable f95 bindings" ON) endif(DEFAULT_NO_BINDINGS) -if(Enable_f95 AND NOT PLPLOT_Fortran_COMPILER_WORKS) +if(ENABLE_f95 AND NOT PLPLOT_Fortran_COMPILER_WORKS) workaround_9220(Fortran PLPLOT_Fortran_COMPILER_WORKS) if(NOT PLPLOT_Fortran_COMPILER_WORKS) message(STATUS "WARNING: no working Fortran compiler so disabling Fortran bindings and examples.") set(ENABLE_f95 OFF CACHE BOOL "Enable f95 bindings" FORCE) endif(NOT PLPLOT_Fortran_COMPILER_WORKS) -endif(Enable_f95 AND NOT PLPLOT_Fortran_COMPILER_WORKS) +endif(ENABLE_f95 AND NOT PLPLOT_Fortran_COMPILER_WORKS) if(ENABLE_f95) # Find and check Fortran compiler. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |