|
From: <sm...@us...> - 2009-03-24 22:13:58
|
Revision: 9772
http://plplot.svn.sourceforge.net/plplot/?rev=9772&view=rev
Author: smekal
Date: 2009-03-24 22:13:49 +0000 (Tue, 24 Mar 2009)
Log Message:
-----------
For MinGW the .def files need "LIBRARY libplplotfxxd.dll" defined at the top, otherwise at runtime the executable doesn't know what dll to open. Fortran 77 and 95 examples work now for MinGW.
Modified Paths:
--------------
trunk/bindings/f77/plplotf77_mingw.def
trunk/bindings/f95/plplotf95_mingw.def
Modified: trunk/bindings/f77/plplotf77_mingw.def
===================================================================
--- trunk/bindings/f77/plplotf77_mingw.def 2009-03-24 22:02:46 UTC (rev 9771)
+++ trunk/bindings/f77/plplotf77_mingw.def 2009-03-24 22:13:49 UTC (rev 9772)
@@ -1,4 +1,5 @@
; dlltool -z plplotf77_mingw.def --export-all-symbol libplplotf77d.dll
+LIBRARY libplplotf77d.dll
EXPORTS
plabort_
plaxes_
Modified: trunk/bindings/f95/plplotf95_mingw.def
===================================================================
--- trunk/bindings/f95/plplotf95_mingw.def 2009-03-24 22:02:46 UTC (rev 9771)
+++ trunk/bindings/f95/plplotf95_mingw.def 2009-03-24 22:13:49 UTC (rev 9772)
@@ -1,4 +1,4 @@
-;
+LIBRARY libplplotf95d.dll
EXPORTS
plparseopts_
__plplotp_MOD_plaxes
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|