<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Approximatrix Forums — Package Support]]></title>
	<link rel="self" href="https://forums.approximatrix.com/extern.php?action=feed&amp;fid=12&amp;type=atom" />
	<updated>2024-12-22T17:27:00Z</updated>
	<generator>PunBB</generator>
	<id>https://forums.approximatrix.com/index.php</id>
		<entry>
			<title type="html"><![CDATA[fortran-sdl2 package]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=968&amp;action=new" />
			<summary type="html"><![CDATA[<p>It seems that the function SDL_CreateRGBSurfaceFrom is not available in the package,<br />From readme.md (visual studio) the function seems not to be bound (see line 326). <br />Can this be corrected so that I can use the function?</p>]]></summary>
			<author>
				<name><![CDATA[csitters]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=4272</uri>
			</author>
			<updated>2024-12-22T17:27:00Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=968&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[multiple definition]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=916&amp;action=new" />
			<summary type="html"><![CDATA[<p>SimplyFortran 3.31<br />dismg_d.a of Dislin &amp; libappgraphics.a of Appgraphics have same function &quot;line&quot;<br />Error:<br />d:/program files (x86)/simply fortran 3/mingw-w64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib\libappgraphics.a(drawing.o):drawing.c:(.text+0x13e0): multiple definition of `line&#039;<br />c:\dislin\dismg_d.a(line.o):line.c:(.text+0x476e): first defined here<br />collect2.exe: error: ld returned 1 exit status</p>]]></summary>
			<author>
				<name><![CDATA[weixing1531]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=3945</uri>
			</author>
			<updated>2023-09-23T08:22:38Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=916&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Problems using AppGraphics (SF version 3.23)]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=847&amp;action=new" />
			<summary type="html"><![CDATA[<p>1. The help has been inadequate for me. Especially it is unclear how the textbox can ever get more than 1 line. How?<br />2. I seem to find that the textbox routines somehow change something hidden so that the program has unexpected behavior afterwards. For example, when using graphics routine outtextxy, the position of the text was not what would be expected even though the x and y values were correct. I was able to overcome this by calling graphdefaults(). However, when I did this, my menus became non-functional so there was no further response to any menus and the menu function to quit no longer worked either. It feels like there are thread issues and the graphdefaults call did something to prevent correct behavior. Because of previous problems I suspect some internal corruption occurs when using textbox functions.<br />3. It would really help to see a good example program that uses all the features of the textbox. Especially multi-line.<br />4. It would be nice to know the additional things that graphdefaults does that are not described in the help.<br />5. Is there anyway to change the textcolor of&nbsp; text in the textboxes? Color control seems only possible for the graphics functions.</p>]]></summary>
			<author>
				<name><![CDATA[ifoley2008]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=3949</uri>
			</author>
			<updated>2022-02-26T09:00:23Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=847&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[How to include mod file?]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=704&amp;action=new" />
			<summary type="html"><![CDATA[<p>I installed plplot by sfpm.<br />I tried test program, but it cant include mod file.<br />Other pakages same.<br />How to include mod file?</p><p>Error masage is below.<br />==============================================================================<br />Generating Makefile... Okay<br />==============================================================================<br />Compiling .\x01f.f90<br />f951.exe: Fatal Error: Reading module &#039;plplot&#039; at line 502 column 43: Expected left parenthesis<br />compilation terminated.<br />Error: Last command making (build\x01f.o) returned a bad status<br />Error: Make execution terminated</p><p>* Failed *</p>]]></summary>
			<author>
				<name><![CDATA[Kato Tomohisa]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=3571</uri>
			</author>
			<updated>2019-01-05T08:30:31Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=704&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[How to use GSL]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=703&amp;action=new" />
			<summary type="html"><![CDATA[<p>This is Kato Tomohisa from Japan.<br />I want to use GSL.</p><p>I installed GSL by SF Pakage Manager.<br />I edit program below.<br />But I can&#039;t build.<br />How I set Include and Lib.</p><p>#include &lt;stdio.h&gt;<br />#include &lt;gsl/gsl_sf_bessel.h&gt;</p><p>Program source<br />int main (void)<br />{<br />&nbsp; double x = 5.0;<br />&nbsp; double y = gsl_sf_bessel_J0 (x);<br />&nbsp; printf (&quot;J0(%g) = %.18e\n&quot;, x, y);<br />&nbsp; return 0;<br />}</p><p>Massage<br />==============================================================================<br />Generating Makefile... Okay<br />==============================================================================<br />Generating target.exe<br />build\bessel.o: In function `main&#039;:<br />- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <br />D:\@ProgramSource\c/./bessel.c:8: undefined reference to `gsl_sf_bessel_J0&#039;<br />collect2.exe: error: ld returned 1 exit status<br />Error: Last command making (target.exe) returned a bad status<br />Error: Make execution terminated</p><p>* Failed *</p>]]></summary>
			<author>
				<name><![CDATA[Kato Tomohisa]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=3571</uri>
			</author>
			<updated>2019-01-04T10:23:23Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=703&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Gtk-fortran]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=696&amp;action=new" />
			<summary type="html"><![CDATA[<p>Hello Jeff,</p><p>When trying to run the Gtk-fortran example I got this from the build step:</p><p>Generating Makefile... Okay<br />==============================================================================<br />Compiling .\bazaar.f90<br />- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <br />.\bazaar.f90:45:6:</p><p>&nbsp; &nbsp;use gtk, only: gtk_about_dialog_new, gtk_about_dialog_set_authors, &amp;<br />&nbsp; &nbsp; &nbsp; 1<br />Fatal Error: Cannot read module file &#039;gtk.mod&#039; opened at (1), because it was created by a different version of GNU Fortran<br />compilation terminated.<br />Error: Last command making (build\bazaar.o) returned a bad status<br />Error: Make execution terminated</p><p>* Failed *</p><p>It seems that the module was compiled by a different version of gfortran. If I am right, would it be possible to recompile the package and substitute the one which is presently in Package Manager?</p><p>Thanks,</p><p>Marcelos Groetaers</p>]]></summary>
			<author>
				<name><![CDATA[m.groetaers]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=3817</uri>
			</author>
			<updated>2018-10-28T18:17:58Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=696&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[OpenMP]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=500&amp;action=new" />
			<summary type="html"><![CDATA[<p>Hi there, I was wondering if anyone was able to tell me whether OpenMP is available to Simply Fortran users. I&#039;m likely to need the use of parallel programming soon and it would be useful to know.</p><p>Thank in advance!</p>]]></summary>
			<author>
				<name><![CDATA[Samsamsam]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=3640</uri>
			</author>
			<updated>2015-10-20T12:15:37Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=500&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[appgrahpics icon button]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=477&amp;action=new" />
			<summary type="html"><![CDATA[<p>I am trying to set up a tool bar for my project using appgrahpics. <br />Is it possible to create an icon button.</p>]]></summary>
			<author>
				<name><![CDATA[dave.swabey]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=3507</uri>
			</author>
			<updated>2015-06-30T16:35:47Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=477&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Gtk-Fortran examples: runtime crash 0xc000007b]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=407&amp;action=new" />
			<summary type="html"><![CDATA[<p>I write to report a difficulty with the Gtk3-Fortran examples.<br />-----<br />On opening the Gtk3-Fortran examples, I saved the project file in a folder called &quot;Gtk-F examples&quot;, with filename &quot;Gtk-F examples.prj). </p><p>The first example, bazaar.f90 then compiled and built OK.<br />When I tried to run it, I received this error message:<br />Application error.&nbsp; Unable to start correctly (0xc000007b).&nbsp; Click OK to close the application.&nbsp; </p><p>After closing, CLEANing and repeating, same result.</p><p>Next: I CLEANed again, then disabled bazaar.f9, enabled cairo-basics-click.f90, and tried to compile and build.&nbsp; This gave a Make error:<br />==================================<br />Generating Makefile... Okay<br />==================================<br />Error(F37): Target (build\cairo-basics-click.o) is defined recursively<br />Error(E02): Make execution terminated<br />* Failed *</p><p>Next, CLEAN, disable cairo-basics-click.f90 and re-enable bazaar.f90, compile and build: AND THIS TIME, bazaar.f90 also fails to build (even though it did build before:<br />==================================<br />Generating Makefile... Okay<br />==================================<br />Error(F37): Target (build\bazaar.o) is defined recursively<br />Error(E02): Make execution terminated<br />* Failed *</p><p>So now examine the Makefile:<br />Here&#039;s the whole file:</p><p>#<br /># Automagically generated by Approximatrix Simply Fortran 2.18<br />#<br />FC=&quot;C:\Program Files (x86)\Fortran\SF2\mingw-w64\bin\gfortran.exe&quot;<br />CC=&quot;C:\Program Files (x86)\Fortran\SF2\mingw-w64\bin\gcc.exe&quot;<br />AR=&quot;C:\Program Files (x86)\Fortran\SF2\mingw-w64\bin\ar.exe&quot;<br />WRC=&quot;C:\PROGRA~2\Fortran\SF2\MINGW-~1\bin\windres.exe&quot;<br />RM=rm -f</p><p>IDIR=-IC:/Users/jwasilewski/AppData/Local///sfpm/32/include <br /># -I error: Directory C:\Program Files (x86)\Fortran\SF2\mingw-w64\include\ does not exist</p><p>LDIR=-LC:/PROGRA~2/Fortran/SF2/MINGW-~1/lib/ -LC:/Users/jwasilewski/AppData/Local///sfpm/32/lib </p><br /><p>OPTFLAGS= -g</p><p>SPECIALFLAGS=-m32 $(IDIR)</p><p>RCFLAGS=-O coff -F pe-i386</p><p>PRJ_FFLAGS=</p><p>PRJ_CFLAGS=-mms-bitfields</p><p>PRJ_LFLAGS=-lgtk-3-fortran -lgtk-3.dll -lgdk-3.dll -lgthread-2.0.dll -lgdi32 -lole32 -latk-1.0.dll -lgdk_pixbuf-2.0.dll -lpangowin32-1.0.dll -lpango-1.0.dll -lcairo.dll -lcairo-gobject.dll -lgobject-2.0.dll -lgmodule-2.0.dll -lglib-2.0.dll -lintl.dll</p><p>FFLAGS=$(SPECIALFLAGS) $(OPTFLAGS) $(PRJ_FFLAGS) -Jmodules </p><p>CFLAGS=$(SPECIALFLAGS) $(OPTFLAGS) $(PRJ_CFLAGS)</p><p>&quot;build\bazaar.o&quot;: &quot;.\bazaar.f90&quot;<br />&nbsp; &nbsp; @echo Compiling .\bazaar.f90<br />&nbsp; &nbsp; @$(FC) -c -o &quot;build\bazaar.o&quot; $(FFLAGS) &quot;.\bazaar.f90&quot;<br />&quot;modules\my_widgets.mod&quot; &quot;modules\handlers.mod&quot; : &quot;build\bazaar.o&quot; .EXISTSONLY<br />&nbsp; &nbsp; @echo Compiling .\bazaar.f90<br />&nbsp; &nbsp; @$(FC) -c -o &quot;build\bazaar.o&quot; $(FFLAGS) &quot;.\bazaar.f90&quot;</p><p>clean: .SYMBOLIC<br />&nbsp; &nbsp; @echo Deleting build\bazaar.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\bazaar.o&quot; &quot;modules\my_widgets.mod&quot; &quot;modules\handlers.mod&quot;<br />&nbsp; &nbsp; @echo Deleting build\cairo-basics-click.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\cairo-basics-click.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\cairo-basics.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\cairo-basics.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\cairo-tests.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\cairo-tests.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_assistant.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_assistant.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_cairo1.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_cairo1.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_cairo_clock.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_cairo_clock.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_choosers.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_choosers.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_combo.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_combo.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_containers.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_containers.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_dialog.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_dialog.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_infobar.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_infobar.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_list1.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_list1.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_list_n.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_list_n.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_list_renderers.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_list_renderers.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_menu.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_menu.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_pbar.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_pbar.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_pbar_p.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_pbar_p.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_radio.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_radio.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_sliders.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_sliders.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_sliders2.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_sliders2.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_textview.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_textview.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\hl_tree.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\hl_tree.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\julia_pixbuf.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\julia_pixbuf.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\list_demo.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\list_demo.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\mandelbrot.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\mandelbrot.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\mandelbrot_pixbuf.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\mandelbrot_pixbuf.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\mandelbrot_pixbuf_zoom.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\mandelbrot_pixbuf_zoom.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\menu.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\menu.o&quot;<br />&nbsp; &nbsp; @echo Deleting build\notebooks.o and related files<br />&nbsp; &nbsp; @$(RM) &quot;build\notebooks.o&quot;<br />&nbsp; &nbsp; @echo Deleting default icon resource<br />&nbsp; &nbsp; @$(RM) &quot;build\default_icon.res&quot;<br />&nbsp; &nbsp; @echo Deleting gtk-fortran-ex.exe<br />&nbsp; &nbsp; @$(RM) &quot;gtk-fortran-ex.exe&quot;</p><p>&quot;gtk-fortran-ex.exe&quot;:&nbsp; &quot;build\bazaar.o&quot;<br />&nbsp; &nbsp; @echo Generating gtk-fortran-ex.exe<br />&nbsp; &nbsp; @$(FC) -o &quot;gtk-fortran-ex.exe&quot; -static -m32 -mwindows &quot;build\bazaar.o&quot; $(LDIR) $(PRJ_LFLAGS)</p><p>all: &quot;gtk-fortran-ex.exe&quot; .SYMBOLIC<br />---- <br />End of report<br />---<br />John</p>]]></summary>
			<author>
				<name><![CDATA[JohnWasilewski]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=102</uri>
			</author>
			<updated>2014-12-18T00:53:52Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=407&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Gtk3-Fortran GUI : request for guidance]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=406&amp;action=new" />
			<summary type="html"><![CDATA[<p>Jeff (or anyone), I&#039;m learning how to use Glade to design a GUI which I can then compile in SF by USE-ing the Gtk3-Fortran package.</p><p>I note that Glade saves files of a type called &quot;.XML&quot; files.<br />I don&#039;t know what these are but I don&#039;t suppose I need to, because it seems that I need to read these into a utility which will generate the corresponding FORTRAN code. </p><p>As I&#039;m a complete beginner with this, could you just guide me a tiny bit:</p><p>(1) Is the above correct?</p><p>(2) About the utility to convert from .XML to Fortran code that Gtk3 can handle, is it a Glade utility or a Gtk3-Fortran utility, what is it called and where can I find it?</p><p>(3) Alternatively, can I just add the .XML file to my SF project, and will SF and the Gtk3-Fortran package do the rest?</p><p>(4) When experimenting with the Gtk3-Fortran package&#039;s example project, I&#039;ve had a bit of trouble getting them to run.&nbsp; As I was trying the examples out on the same day as I&#039;d just installed SF2.18.1777, I thought I&#039;d better uninstall/reinstall the Gtk packages, just in case of some conflict beween the new GFortran compiler version and the Gtk3 object files already installed.&nbsp; This did NOT fix the problem.&nbsp; I&#039;ll post the problem details in another report.<br />--- <br />John</p>]]></summary>
			<author>
				<name><![CDATA[JohnWasilewski]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=102</uri>
			</author>
			<updated>2014-12-18T00:47:58Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=406&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Problem using lapack]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=373&amp;action=new" />
			<summary type="html"><![CDATA[<p>Hi Jeff,</p><p>I am a new user for Fortran language and Simply Fortran. I just installed lapack &amp; blas from Simply Fortran package manager. However, compiling is still not successful. <br />Here is the building status of one of my projects:</p><p>==============================================================================<br />Generating Makefile... Okay<br />==============================================================================<br />Generating target.exe<br />build\main.o: In function `MAIN__&#039;:<br />C:\DEF\Fortran 90\simplify fortran\ggnewtry/./main.f90:40: undefined reference to `dsyev&#039;<br />collect2.exe: error: ld returned 1 exit status<br />Error(E42): Last command making (target.exe) returned a bad status<br />Error(E02): Make execution terminated</p><p>* Failed *</p><br /><p>The following link indicates that &quot;dsyev&quot; is indeed included in lapack&nbsp; 3.5.0 (which is the current version in SF package manager): <br /><a href="http://www.netlib.org/lapack/explore-html/dd/d4c/dsyev_8f.html#a442c43fca5493590f8f26cf42fed4044">http://www.netlib.org/lapack/explore-ht … f42fed4044</a> </p><p>So I guess the installation of blas and lapack is not successful.</p><p>Could you help me with this issue? I am kind of near dealine for the project...</p><br /><p>Thank you so much in advance!</p><p>Best,<br />Jessie</p>]]></summary>
			<author>
				<name><![CDATA[jessiezhe1987]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=3578</uri>
			</author>
			<updated>2014-10-10T21:25:24Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=373&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Problems compiling when using flibs and opengl]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=361&amp;action=new" />
			<summary type="html"><![CDATA[<p>I am trying to use the m_vfile module in flibs to construct a file manager, however when I call functions in that module I get the following errors:</p><br /><p>C:/Users/AnthonyG/AppData/Local///sfpm/32/lib\libflibs-filedir.a(m_vfile.o): In function `_m_vfile_MOD_vfile_shutdown&#039;:<br />C:\Users\Jeffrey\Workspace\sfpm\packages\flibs\projects/../src/filedir/m_vfile.f90:3702: undefined reference to `__m_vstring_MOD_vstring_free&#039;<br />C:\Users\Jeffrey\Workspace\sfpm\packages\flibs\projects/../src/filedir/m_vfile.f90:3703: undefined reference to `__m_vstring_MOD_vstring_free&#039;<br />C:\Users\Jeffrey\Workspace\sfpm\packages\flibs\projects/../src/filedir/m_vfile.f90:3704: undefined reference to `__m_vstring_MOD_vstring_free&#039;<br />C:\Users\Jeffrey\Workspace\sfpm\packages\flibs\projects/../src/filedir/m_vfile.f90:3705: undefined reference to `__m_vstring_MOD_vstring_free&#039;<br />C:\Users\Jeffrey\Workspace\sfpm\packages\flibs\projects/../src/filedir/m_vfile.f90:3706: undefined reference to `__m_vstring_MOD_vstring_free&#039;<br />C:/Users/AnthonyG/AppData/Local///sfpm/32/lib\libflibs-filedir.a(m_vfile.o):C:\Users\Jeffrey\Workspace\sfpm\packages\flibs\projects/../src/filedir/m_vfile.f90:3707: more undefined references to `__m_vstring_MOD_vstring_free&#039; follow<br />C:/Users/AnthonyG/AppData/Local///sfpm/32/lib\libflibs-filedir.a(m_vfile.o): In function `_m_vfile_MOD_vfile_startup&#039;:<br />C:\Users\Jeffrey\Workspace\sfpm\packages\flibs\projects/../src/filedir/m_vfile.f90:3631: undefined reference to `__m_platform_MOD_platform_get_platform&#039;<br />C:\Users\Jeffrey\Workspace\sfpm\packages\flibs\projects/../src/filedir/m_vfile.f90:3632: undefined reference to `__m_vstringformat_MOD_vstring_format_auto_integer_kind4&#039;<br />C:\Users\Jeffrey\Workspace\sfpm\packages\flibs\projects/../src/filedir/m_vfile.f90:3645: undefined reference to `__m_vstring_MOD_vstring_new_empty&#039;<br />...<br />...<br />(many more of the same error messages)<br />...<br />...</p><p>collect2.exe: error: ld returned 1 exit status<br />Error(E42): Last command making (RAS.exe) returned a bad status<br />Error(E02): Make execution terminated</p><p>* Failed *</p><br /><p>The included flibs demo file test_m_filedir.f90 compiles and executes fine (although it doesn&#039;t use m_vfile), however the demo file myfprog.f90 for sqlite generates the same errors as above. I also have similar problems compiling the opengl demo:</p><br /><p>Warning: resolving _glMatrixMode by linking to _glMatrixMode@4<br />Use --enable-stdcall-fixup to disable these warnings<br />Use --disable-stdcall-fixup to disable these fixups<br />Warning: resolving _glLoadIdentity by linking to _glLoadIdentity@0<br />Warning: resolving _glTranslatef by linking to _glTranslatef@12<br />Warning: resolving _glDisable by linking to _glDisable@4<br />Warning: resolving _glPushMatrix by linking to _glPushMatrix@0<br />Warning: resolving _glPopMatrix by linking to _glPopMatrix@0<br />Warning: resolving _glFlush by linking to _glFlush@0<br />Warning: resolving _glBegin by linking to _glBegin@4<br />Warning: resolving _glEnd by linking to _glEnd@0<br />Warning: resolving _glColor4fv by linking to _glColor4fv@4<br />build\scube.o: In function `MAIN__&#039;:<br />C:\Users\AnthonyG\Documents/./scube.f90:59: undefined reference to `glFrustum&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:65: undefined reference to `glEnable&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:68: undefined reference to `glEnable&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:70: undefined reference to `glEnable&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:71: undefined reference to `glLightfv&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:72: undefined reference to `glLightfv&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:73: undefined reference to `glLightfv&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:74: undefined reference to `glLightfv&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:80: undefined reference to `glEnable&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:83: undefined reference to `glEnable&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:85: undefined reference to `glFogfv&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:86: undefined reference to `glFogfv&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:88: undefined reference to `glFogf&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:89: undefined reference to `glFogf&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:90: undefined reference to `glFogf&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:91: undefined reference to `glFogf&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:93: undefined reference to `glEnable&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:94: undefined reference to `glCullFace&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:96: undefined reference to `glShadeModel&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:98: undefined reference to `glBlendFunc&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:100: undefined reference to `glPolygonStipple&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:102: undefined reference to `glPolygonStipple&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:105: undefined reference to `glClearColor&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:106: undefined reference to `glClearIndex&#039;<br />C:\Users\AnthonyG\Documents/./scube.f90:107: undefined reference to `glClearDepth&#039;<br />build\scube_mod.o: In function `menu_select&#039;:<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:465: undefined reference to `glEnable&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:473: undefined reference to `glEnable&#039;<br />build\scube_mod.o: In function `fog_select&#039;:<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:447: undefined reference to `glFogf&#039;<br />build\scube_mod.o: In function `display&#039;:<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:371: undefined reference to `glClear&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:375: undefined reference to `glRotatef&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:376: undefined reference to `glScalef&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:383: undefined reference to `glScalef&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:390: undefined reference to `glScalef&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:391: undefined reference to `glRotatef&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:392: undefined reference to `glRotatef&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:393: undefined reference to `glRotatef&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:394: undefined reference to `glScalef&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:395: undefined reference to `glGetFloatv&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:400: undefined reference to `glDepthMask&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:402: undefined reference to `glEnable&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:404: undefined reference to `glEnable&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:412: undefined reference to `glMultMatrixf&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:420: undefined reference to `glMultMatrixf&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:425: undefined reference to `glDepthMask&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:432: undefined reference to `glEnable&#039;<br />build\scube_mod.o: In function `keyboard&#039;:<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:333: undefined reference to `glEnable&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:341: undefined reference to `glEnable&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:348: undefined reference to `glFogf&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:352: undefined reference to `glFogf&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:356: undefined reference to `glFogf&#039;<br />build\scube_mod.o: In function `_scube_mod_MOD_myshadowmatrix&#039;:<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:306: undefined reference to `glMultMatrixf&#039;<br />build\scube_mod.o: In function `_scube_mod_MOD_drawcheck&#039;:<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:245: undefined reference to `glGenLists&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:247: undefined reference to `glNewList&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:250: undefined reference to `glNormal3fv&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:269: undefined reference to `glVertex4fv&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:270: undefined reference to `glVertex4fv&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:271: undefined reference to `glVertex4fv&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:272: undefined reference to `glVertex4fv&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:282: undefined reference to `glEndList&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:287: undefined reference to `glCallList&#039;<br />build\scube_mod.o: In function `_scube_mod_MOD_drawcube&#039;:<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:221: undefined reference to `glNormal3fv&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:223: undefined reference to `glVertex4fv&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:224: undefined reference to `glVertex4fv&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:225: undefined reference to `glVertex4fv&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:226: undefined reference to `glVertex4fv&#039;<br />build\scube_mod.o: In function `_scube_mod_MOD_setcolor&#039;:<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:157: undefined reference to `glMaterialfv&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:160: undefined reference to `glMaterialfv&#039;<br />C:\Users\AnthonyG\Documents/./scube_mod.f90:166: undefined reference to `glIndexf&#039;<br />collect2.exe: error: ld returned 1 exit status<br />Error(E42): Last command making (scube.exe) returned a bad status<br />Error(E02): Make execution terminated</p><p>* Failed *</p><p>If anybody has any ideas I could try I would appreciate it. Thanks in advance.</p><p>Anthony</p>]]></summary>
			<author>
				<name><![CDATA[anthonyg]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=3566</uri>
			</author>
			<updated>2014-07-27T17:26:16Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=361&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[PLPlot 5.10.0 Problems]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=357&amp;action=new" />
			<summary type="html"><![CDATA[<p>The <a href="http://packages.simplyfortran.com/package/5.html">PLPlot package</a> has just been updated to 5.10.0-1 due to some issues with the included example project.&nbsp; Specifically, linking to PLPlot also required linking to the Tcl/Tk libraries due to some dependencies when compiling PLPlot itself on our end.&nbsp; This unmet dependency caused unresolved symbols when linking the example project.</p><p>The standalone PLPlot package has been updated.&nbsp; Similar, possible issues with the PLPlot packages with Gtk+ support will be investigated tomorrow.&nbsp; Sorry for any inconvenience to our users.</p>]]></summary>
			<author>
				<name><![CDATA[jeff]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=2</uri>
			</author>
			<updated>2014-07-01T00:32:19Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=357&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[SWIG package]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=350&amp;action=new" />
			<summary type="html"><![CDATA[<p>Did you make a custom executable to spit out Fortran wrapper code using the SWIG module?&nbsp; Or is it just the regular SWIG program?&nbsp; Because normally it doesn&#039;t (at least I think it doesn&#039;t) do Fortran.</p><p>I&#039;m looking to use a few C libraries in Fortran, and the less wrapper code I have to write, the happier I&#039;ll be, so SWIG looks promising.</p>]]></summary>
			<author>
				<name><![CDATA[jshahbazi]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=3441</uri>
			</author>
			<updated>2014-06-10T19:27:56Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=350&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Can't compile (with ver 2.11) the Gtk3-Fortran (32-bit) package.]]></title>
			<link rel="alternate" href="https://forums.approximatrix.com/viewtopic.php?id=330&amp;action=new" />
			<summary type="html"><![CDATA[<p>Can&#039;t compile (with ver 2.11) the Gtk3-Fortran (32-bit) package.</p><p>I get:</p><p>==============================================================================<br />Generating Makefile... Okay<br />==============================================================================<br />Makefile(46): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(53): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(60): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(74): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(88): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(95): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(102): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(109): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(137): Error(E24): More than one command list found for (modules\ln_handlers.mod)<br />Makefile(144): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(151): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(158): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(172): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(179): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(186): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(200): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(215): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(222): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(229): Error(E24): More than one command list found for (modules\handlers.mod)<br />Makefile(237): Error(E24): More than one command list found for (modules\handlers.mod)<br />Error(E02): Make execution terminated<br />* Failed *</p><br /><p>any suggestions?</p><p>Thanks,<br />Dave</p>]]></summary>
			<author>
				<name><![CDATA[dldewolfe]]></name>
				<uri>https://forums.approximatrix.com/profile.php?id=3520</uri>
			</author>
			<updated>2014-03-17T19:18:06Z</updated>
			<id>https://forums.approximatrix.com/viewtopic.php?id=330&amp;action=new</id>
		</entry>
</feed>
