<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to support-requests</title><link>https://sourceforge.net/p/togl/support-requests/</link><description>Recent changes to support-requests</description><atom:link href="https://sourceforge.net/p/togl/support-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Thu, 17 Apr 2008 20:20:14 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/togl/support-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>GL/gl.h</title><link>https://sourceforge.net/p/togl/support-requests/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;In the make process I have the following error:&lt;/p&gt;
&lt;p&gt;In file included from  togl.c:16:&lt;br /&gt;
togl.h:53:23: error:  GL/gl.h: No such file or directory&lt;/p&gt;
&lt;p&gt;I suppose that it is for some  not installed dependence but I'm not sure.&lt;/p&gt;
&lt;p&gt;I'm running in a Fujitsu laptop with  ubuntu 7.10.&lt;/p&gt;
&lt;p&gt;Any suggestions?&lt;/p&gt;
&lt;p&gt;Tanks in advance&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Menks</dc:creator><pubDate>Thu, 17 Apr 2008 20:20:14 -0000</pubDate><guid>https://sourceforge.net16d1642c88ce01d0eed88cb4617b64d912ef4daf</guid></item><item><title>Togl 1.6 with VC .Net 2003(link error)</title><link>https://sourceforge.net/p/togl/support-requests/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I can generate "togl.lib" and "togl.dll" by using&lt;br /&gt;
"Makefile.vc" under VC .Net 2003.&lt;br /&gt;
When I try to run a program which was run well in&lt;br /&gt;
Sloaris under VC .Net 2003, there is a linking problem.&lt;br /&gt;
The message is like "unreferenced external symbol&lt;br /&gt;
Togl_SwapBuffers(xxxxxx).". I am sure to set "togl.lib"&lt;br /&gt;
into the dependency library, but it seems not work.&lt;/p&gt;
&lt;p&gt;Did I miss something?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sat, 04 Jun 2005 04:32:47 -0000</pubDate><guid>https://sourceforge.net4d1da707d9e3c56c734e5cbf8d20a86818a59832</guid></item><item><title>Need Togl on MacOSX</title><link>https://sourceforge.net/p/togl/support-requests/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Anyone interested in porting TOGL to MacOS X?  I'd really like to &lt;br /&gt;
be able to use it there for development work I'm doing for my &lt;br /&gt;
Ph.D.&lt;/p&gt;
&lt;p&gt;Just thought I'd add my voice.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Glenn&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Glenn A. Fink</dc:creator><pubDate>Mon, 11 Oct 2004 19:40:02 -0000</pubDate><guid>https://sourceforge.net4d808064277045d6abf65349a91105d0aa219f95</guid></item><item><title>togl for MACOSX</title><link>https://sourceforge.net/p/togl/support-requests/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Will there be a togl port to MacOSX at some point ?&lt;/p&gt;
&lt;p&gt;Chris Mortom sent me a MacOSX port of togl.c sometime&lt;br /&gt;
ago but unfortunately I was unable to get it run so&lt;br /&gt;
far. I am trying to to use it through _tkinter (the&lt;br /&gt;
Python wrapper of tk).&lt;br /&gt;
My latest attemps were with Python2.2.2 and tcl/tk8.4.1&lt;br /&gt;
under Jaguag 10.2.2&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 20 Nov 2002 01:50:25 -0000</pubDate><guid>https://sourceforge.net1cb029d3fbfd9b9547adfb623cbc5a7733734741</guid></item><item><title>Togl widget and Tk_Main</title><link>https://sourceforge.net/p/togl/support-requests/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am creating a togl widget, that can be instanciated&lt;br /&gt;
by a Tcl command.&lt;br /&gt;
This is a way to use a graphic library I am developping&lt;br /&gt;
at the same time.&lt;br /&gt;
the tcl interface is destinated to integrate another&lt;br /&gt;
software, so I need a test version independantly...&lt;br /&gt;
I have problems with my test version :&lt;br /&gt;
I made a main, including only a Tk_Main(argc, argv,&lt;br /&gt;
my_init), and the tcl file only includes procedures,&lt;br /&gt;
because the togl widget must be created after the&lt;br /&gt;
Tk_Main wish command. Like this :&lt;/p&gt;
&lt;p&gt;./test&lt;br /&gt;
%frame .f&lt;br /&gt;
%my_togl .f.m&lt;br /&gt;
%pack...&lt;/p&gt;
&lt;p&gt;the problem is that when I proceed like this (by&lt;br /&gt;
creating my togl widget at the wish prompt, the&lt;br /&gt;
callback functions are not activated.&lt;br /&gt;
I create them in the my_init function (with&lt;br /&gt;
ToglCreateFunc, Togl_DisplayFunc and Togl_ReshapeFunc),&lt;br /&gt;
but they seems not to be taken in account by the&lt;br /&gt;
Tk_MainLoop.&lt;/p&gt;
&lt;p&gt;There is not any refresh callback.&lt;/p&gt;
&lt;p&gt;I already used this way to register the callback&lt;br /&gt;
functions, and it worked. But now, I don't know why&lt;br /&gt;
this new version does not works. What is missing or wrong ?&lt;/p&gt;
&lt;p&gt;Thanks for any help.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 03 Jul 2002 12:54:53 -0000</pubDate><guid>https://sourceforge.netc4068703a39ddb1679be5cd17dda2a2763358f81</guid></item><item><title>Installation in windows</title><link>https://sourceforge.net/p/togl/support-requests/1/</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sun, 06 Aug 2000 04:08:51 -0000</pubDate><guid>https://sourceforge.netb46015ba43fa889214437c57e44efe0ed540478e</guid></item></channel></rss>