From: <arj...@us...> - 2010-11-24 07:52:08
|
Revision: 11350 http://plplot.svn.sourceforge.net/plplot/?rev=11350&view=rev Author: arjenmarkus Date: 2010-11-24 07:52:02 +0000 (Wed, 24 Nov 2010) Log Message: ----------- Correct the exact name for the new plstring() routine - located in the PLPLOTP module, not PLPLOT. This makes a difference for Ifort, but not for gfortran. Modified Paths: -------------- trunk/bindings/f95/plplotf95_ifort.def Modified: trunk/bindings/f95/plplotf95_ifort.def =================================================================== --- trunk/bindings/f95/plplotf95_ifort.def 2010-11-23 18:36:52 UTC (rev 11349) +++ trunk/bindings/f95/plplotf95_ifort.def 2010-11-24 07:52:02 UTC (rev 11350) @@ -77,7 +77,7 @@ PLPLOT_mp_PLSCMAP1LA PLPLOT_mp_PLSCMAP1LA2 PLPLOT_mp_PLSCMAP1L2 - PLPLOT_mp_PLSTRING + PLPLOTP_mp_PLSTRING PLPLOT_mp_PLSTRIPC PLPLOT_mp_PLSVECT PLPLOT_mp_PLSYM This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <arj...@us...> - 2012-02-19 11:36:22
|
Revision: 12171 http://plplot.svn.sourceforge.net/plplot/?rev=12171&view=rev Author: arjenmarkus Date: 2012-02-19 11:36:16 +0000 (Sun, 19 Feb 2012) Log Message: ----------- Add the constants that are defined via DATA statements to the list of exported symbols. This is required by the MS VC/C++ - Intel Fortran combination, but not by gcc/gfortran. Without these extra exports you get unresolved external symbols. Note: the use of the hexadecimal numbers prevents us from using parameters. According to the Fortran 90/95 standards, you can not use such numbers for parameters. This has been relaxed for Fortran 2003, so we may want to revisit this issue in the near future (both gfortran 4.6 and later and Intel Fortran 11.1 and later support such numbers in the parameter statement.) Modified Paths: -------------- trunk/bindings/f95/plplotf95_ifort.def Modified: trunk/bindings/f95/plplotf95_ifort.def =================================================================== --- trunk/bindings/f95/plplotf95_ifort.def 2012-02-19 11:31:08 UTC (rev 12170) +++ trunk/bindings/f95/plplotf95_ifort.def 2012-02-19 11:36:16 UTC (rev 12171) @@ -1,5 +1,51 @@ LIBRARY plplotf95d.dll EXPORTS + PLPLOT_mp_DRAW_LINEX + PLPLOT_mp_DRAW_LINEY + PLPLOT_mp_DRAW_LINEXY + PLPLOT_mp_MAG_COLOR + PLPLOT_mp_BASE_CONT + PLPLOT_mp_TOP_CONT + PLPLOT_mp_SURF_CONT + PLPLOT_mp_DRAW_SIDES + PLPLOT_mp_FACETED + PLPLOT_mp_MESH + PLPLOT_mp_PL_OPT_ENABLED + PLPLOT_mp_PL_OPT_ARG + PLPLOT_mp_PL_OPT_NODELETE + PLPLOT_mp_PL_OPT_INVISIBLE + PLPLOT_mp_PL_OPT_DISABLED + PLPLOT_mp_PL_OPT_FUNC + PLPLOT_mp_PL_OPT_BOOL + PLPLOT_mp_PL_OPT_INT + PLPLOT_mp_PL_OPT_FLOAT + PLPLOT_mp_PL_OPT_STRING + PLPLOT_mp_PL_PARSE_PARTIAL + PLPLOT_mp_PL_PARSE_FULL + PLPLOT_mp_PL_PARSE_QUIET + PLPLOT_mp_PL_PARSE_NODELETE + PLPLOT_mp_PL_PARSE_SHOWALL + PLPLOT_mp_PL_PARSE_OVERRIDE + PLPLOT_mp_PL_PARSE_NOPROGRAM + PLPLOT_mp_PL_PARSE_NODASH + PLPLOT_mp_PL_PARSE_SKIP + PLPLOT_mp_PL_FCI_IMPOSSIBLE + PLPLOT_mp_PL_FCI_HEXDIGIT_MASK + PLPLOT_mp_PL_FCI_HEXPOWER_MASK + PLPLOT_mp_PL_FCI_HEXPOWER_IMPOSSIBLE + PLPLOT_mp_PL_FCI_FAMILY + PLPLOT_mp_PL_FCI_STYLE + PLPLOT_mp_PL_FCI_WEIGHT + PLPLOT_mp_PL_FCI_SANS + PLPLOT_mp_PL_FCI_SERIF + PLPLOT_mp_PL_FCI_MONO + PLPLOT_mp_PL_FCI_SCRIPT + PLPLOT_mp_PL_FCI_SYMBOL + PLPLOT_mp_PL_FCI_UPRIGHT + PLPLOT_mp_PL_FCI_ITALIC + PLPLOT_mp_PL_FCI_OBLIQUE + PLPLOT_mp_PL_FCI_MEDIUM + PLPLOT_mp_PL_FCI_BOLD PLPARSEOPTS PLPLOTP_mp_PLSETOPT PLPLOTP_mp_PLSDEV This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <arj...@us...> - 2013-11-27 08:39:31
|
Revision: 12761 http://sourceforge.net/p/plplot/code/12761 Author: arjenmarkus Date: 2013-11-27 08:39:29 +0000 (Wed, 27 Nov 2013) Log Message: ----------- Adjusting the export definition file for Intel Fortran vis-a-vis the new plsvect API. Modified Paths: -------------- trunk/bindings/f95/plplotf95_ifort.def Modified: trunk/bindings/f95/plplotf95_ifort.def =================================================================== --- trunk/bindings/f95/plplotf95_ifort.def 2013-11-27 08:38:36 UTC (rev 12760) +++ trunk/bindings/f95/plplotf95_ifort.def 2013-11-27 08:39:29 UTC (rev 12761) @@ -84,6 +84,6 @@ PLPLOTP_mp_PLSTRING PLPLOTP_mp_PLSTRING3 PLPLOT_mp_PLSTRIPC - PLPLOT_mp_PLSVECT + PLPLOT_mp_PLSVECT1 PLPLOT_mp_PLSYM PLPLOT_mp_PLXORMOD This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |