<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <br>
    Le 24/04/2014 15:52, IOhannes m zm&ouml;lnig a &eacute;crit :<br>
    <span style="white-space: pre;">&gt;<br>
      &gt;<br>
      &gt;<br>
      &gt; well, this basically means that the windowing code as found
      in<br>
      &gt; src/Base/GemWinCreateMac.cpp has reached it's end of life,
      even when<br>
      &gt; doing a legacy i386-only build.<br>
      &gt;<br>
      &gt; it's probably time to entirely remove the old legacy
      windowing code, and<br>
      &gt; switch to the new one found in src/Output.<br>
      &gt;<br>
      &gt; i *guess* the easiest way to do so (for you, right now), is
      to simply:<br>
      &gt; - remove the line containing GemWinCreateMac.cpp from
      src/Base/Makefile.am<br>
      &gt; - remove the line containing gemwin.cpp from
      src/Control/Makefile.am<br>
      &gt;<br>
      &gt; - add Gem's abstractions (containing gemwin.pd and the like)
      to your<br>
      &gt; search-path<br>
      &gt;</span><br>
    I tried that.<br>
    <br>
    --<br>
    first comment (as seen by m.grimm)<br>
    this error:<br>
    <br>
    videoBase.cpp:426:3: error: use of undeclared identifier 'select'<br>
    &nbsp; select(0,0,0,0,&amp;sleep);<br>
    <br>
    can be corrected by modifying the beginning of the file<br>
    <br>
    #ifdef HAVE_SYS_SELECT_H<br>
    # include &lt;sys/select.h&gt;<br>
    #endif<br>
    <br>
    it works by adding<br>
    <br>
    # include &lt;sys/select.h&gt;<br>
    <br>
    outside of the test but i don't understand it because in my config.h
    i have<br>
    #define HAVE_SYS_SELECT_H 1<br>
    <br>
    ------------------------------------------------------------------<br>
    <br>
    second comment<br>
    even if i configure with "--without-ftgl"<br>
    I have errors on text related objects, for example:<br>
    TextBaseFTGL.cpp:57:3: error: member initializer 'm_font' does not
    name a non-static data member or base class<br>
    &nbsp; m_font(NULL), m_fontname(NULL)<br>
    &nbsp; ^~~~~~~~~~~~<br>
    TextBaseFTGL.cpp:57:17: error: initializer 'm_fontname' does not
    name a non-static data member or base class; did you mean the member
    'm_fontSize'?<br>
    &nbsp; m_font(NULL), m_fontname(NULL)<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^~~~~~~~~~<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_fontSize<br>
    ./TextBase.h:166:10: note: 'm_fontSize' declared here<br>
    &nbsp; float&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_fontSize;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    TextBaseFTGL.cpp:57:28: warning: implicit conversion of NULL
    constant to 'float' [-Wnull-conversion]<br>
    &nbsp; m_font(NULL), m_fontname(NULL)<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ~^~~~<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.0<br>
    TextBaseFTGL.cpp:57:17: error: multiple initializations given for
    non-static member 'm_fontSize'<br>
    &nbsp; m_font(NULL), m_fontname(NULL)<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^~~~~~~~~~~~~~~~<br>
    TextBaseFTGL.cpp:53:26: note: previous initialization is here<br>
    &nbsp; m_dist(1), m_valid(0), m_fontSize(20), m_fontDepth(20),
    m_precision(3.f),<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^~~~~~~~~~~~~~<br>
    TextBaseFTGL.cpp:71:18: error: out-of-line definition of
    'startRendering' does not match any declaration in 'TextBase'<br>
    void TextBase :: startRendering(void) {<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^~~~~~~~~~~~~~<br>
    TextBaseFTGL.cpp:72:12: error: use of undeclared identifier 'm_font'<br>
    &nbsp; if(NULL==m_font) {<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    TextBaseFTGL.cpp:73:8: error: use of undeclared identifier
    'm_fontname'<br>
    &nbsp;&nbsp;&nbsp; if(m_fontname)<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    TextBaseFTGL.cpp:74:20: error: use of undeclared identifier
    'm_fontname'<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fontNameMess(m_fontname-&gt;s_name);<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    TextBaseFTGL.cpp:83:18: error: out-of-line definition of
    'renderLine' does not match any declaration in 'TextBase'<br>
    void TextBase :: renderLine(const char*line, float dist) {<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^~~~~~~~~~<br>
    TextBaseFTGL.cpp:85:3: error: use of undeclared identifier 'm_font'<br>
    &nbsp; m_font-&gt;BBox(line, x1, y1, z1, x2, y2, z2); // FTGL<br>
    &nbsp; ^<br>
    TextBaseFTGL.cpp:94:3: error: use of undeclared identifier 'm_font'<br>
    &nbsp; m_font-&gt;Render(line);<br>
    &nbsp; ^<br>
    TextBaseFTGL.cpp:98:18: error: out-of-line definition of
    'renderLine' does not match any declaration in 'TextBase'<br>
    void TextBase :: renderLine(const wchar_t*line, float dist) {<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^~~~~~~~~~<br>
    TextBaseFTGL.cpp:100:3: error: use of undeclared identifier 'm_font'<br>
    &nbsp; m_font-&gt;BBox(line, x1, y1, z1, x2, y2, z2); // FTGL<br>
    &nbsp; ^<br>
    TextBaseFTGL.cpp:109:3: error: use of undeclared identifier 'm_font'<br>
    &nbsp; m_font-&gt;Render(line);<br>
    &nbsp; ^<br>
    TextBaseFTGL.cpp:116:29: error: use of undeclared identifier
    'm_font'<br>
    &nbsp; if (m_theText.empty() || !m_font)return;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    TextBaseFTGL.cpp:171:6: error: use of undeclared identifier 'm_font'<br>
    &nbsp; if(m_font)delete m_font; m_font=NULL;<br>
    &nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    TextBaseFTGL.cpp:171:20: error: use of undeclared identifier
    'm_font'<br>
    &nbsp; if(m_font)delete m_font; m_font=NULL;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    TextBaseFTGL.cpp:171:28: error: use of undeclared identifier
    'm_font'<br>
    &nbsp; if(m_font)delete m_font; m_font=NULL;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    TextBaseFTGL.cpp:172:3: error: use of undeclared identifier 'm_font'<br>
    &nbsp; m_font=makeFont(bufptr);<br>
    &nbsp; ^<br>
    TextBaseFTGL.cpp:172:10: error: use of undeclared identifier
    'makeFont'<br>
    &nbsp; m_font=makeFont(bufptr);<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    fatal error: too many errors emitted, stopping now [-ferror-limit=]<br>
    libtool: compile:&nbsp; g++ -DHAVE_CONFIG_H -I. -I../../src -I../../src
    -DGEM_INTERNAL -DGLEW_BUILD -DPD
    -I/Applications/Pd-extended.app/Contents/Resources/src -arch i386 -g
    -O2 -Os -ffast-math -mmmx -fpascal-strings -MT
    libBase_la-TextBaseNone.lo -MD -MP -MF
    .deps/libBase_la-TextBaseNone.Tpo -c TextBaseNone.cpp -o
    libBase_la-TextBaseNone.o &gt;/dev/null 2&gt;&amp;1<br>
    1 warning and 20 errors generated.<br>
    make[3]: *** [libBase_la-TextBaseFTGL.lo] Error 1<br>
    make[3]: *** Waiting for unfinished jobs....<br>
    or:<br>
    <br>
    libtool: compile:&nbsp; g++ -DHAVE_CONFIG_H -I. -I../../src -I../../src
    -DGEM_INTERNAL -DGLEW_BUILD -DPD
    -I/Applications/Pd-extended.app/Contents/Resources/src -arch i386 -g
    -O2 -Os -ffast-math -mmmx -fpascal-strings -MT libGeos_la-text2d.lo
    -MD -MP -MF .deps/libGeos_la-text2d.Tpo -c text2d.cpp&nbsp; -fno-common
    -DPIC -o .libs/libGeos_la-text2d.o<br>
    text2d.cpp:143:16: error: out-of-line definition of 'render' does
    not match any declaration in 'text2d'<br>
    void text2d :: render(GemState*){}<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^~~~~~<br>
    1 error generated.<br>
    <br>
    ------------------------------------------------------------------<br>
    <br>
    third:<br>
    if i try make -k to get through the text errors, i have a few errors
    in imageQT and filmDarwin<br>
    <br>
    /bin/sh ../../libtool&nbsp; --tag=CXX&nbsp;&nbsp; --mode=compile g++
    -DHAVE_CONFIG_H -I. -I../../src&nbsp; -I../../src&nbsp;&nbsp; -DPD
    -I/Applications/Pd-extended.app/Contents/Resources/src&nbsp; -arch i386
    -framework QuickTime&nbsp; -g -O2 -Os -ffast-math -mmmx -fpascal-strings
    -MT gem_imageQT_la-imageQT.lo -MD -MP -MF
    .deps/gem_imageQT_la-imageQT.Tpo -c -o gem_imageQT_la-imageQT.lo
    `test -f 'imageQT.cpp' || echo './'`imageQT.cpp<br>
    libtool: compile:&nbsp; g++ -DHAVE_CONFIG_H -I. -I../../src -I../../src
    -DPD -I/Applications/Pd-extended.app/Contents/Resources/src -arch
    i386 -framework QuickTime -g -O2 -Os -ffast-math -mmmx
    -fpascal-strings -MT gem_imageQT_la-imageQT.lo -MD -MP -MF
    .deps/gem_imageQT_la-imageQT.Tpo -c imageQT.cpp&nbsp; -fno-common -DPIC
    -o .libs/gem_imageQT_la-imageQT.o<br>
    [...]<br>
    imageQT.cpp:267:5: error: no member named 'OffsetRect' in the global
    namespace<br>
    &nbsp; ::OffsetRect(&amp;r, -r.left, -r.top);<br>
    &nbsp; ~~^<br>
    imageQT.cpp:323:5: error: no type named 'DisposeGWorld' in the
    global namespace<br>
    &nbsp; ::DisposeGWorld(gw);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //dispose the offscreen<br>
    &nbsp; ~~^<br>
    <br>
    with a few more in filmDarwin, filmQT and videoDarwin:<br>
    <br>
    filmDarwin.cpp:188:42: error: use of undeclared identifier
    'GetGWorldDevice'<br>
    &nbsp; ::SetMovieGWorld(m_movie, m_srcGWorld,
    GetGWorldDevice(m_srcGWorld));<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    filmDarwin.cpp:206:5: error: no member named 'GetGWorld' in the
    global namespace<br>
    &nbsp; ::GetGWorld(&amp;savedPort, &amp;savedDevice);<br>
    &nbsp; ~~^<br>
    filmDarwin.cpp:207:5: error: no member named 'SetGWorld' in the
    global namespace<br>
    &nbsp; ::SetGWorld(m_srcGWorld, NULL);<br>
    &nbsp; ~~^<br>
    filmDarwin.cpp:208:5: warning: 'GetMovieBox' is deprecated: first
    deprecated in OS X 10.9 [-Wdeprecated-declarations]<br>
    &nbsp; ::GetMovieBox(m_movie, &amp;m_srcRect);<br>
    &nbsp;&nbsp;&nbsp; ^<br>
    /System/Library/Frameworks/QuickTime.framework/Headers/Movies.h:2550:1:
    note: 'GetMovieBox' declared here<br>
    GetMovieBox(<br>
    ^<br>
    filmDarwin.cpp:210:16: error: no member named 'GetGWorldPixMap' in
    the global namespace<br>
    &nbsp; m_pixMap = ::GetGWorldPixMap(m_srcGWorld);<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ~~^<br>
    <br>
    ------------------------------------------------------------------<br>
    <br>
    finally in the output folder i have more or less the same errors
    than before, but this time in gemmacwindow.cpp:<br>
    <br>
    libtool: link: g++ -Wl,-undefined -Wl,dynamic_lookup -o
    .libs/gemglutwindow.pd_darwin -bundle&nbsp;
    .libs/gemglutwindow_la-gemglutwindow.o&nbsp;&nbsp; -lstdc++ -framework
    QuickTime -framework Carbon -framework Cocoa -framework AGL
    -L/Applications/Pd-extended.app/Contents/Resources/bin -L../..
    -framework GLUT -framework OpenGL -ldl -lz -lm&nbsp; -arch i386 -O2 -Os
    -mmmx -arch i386&nbsp;&nbsp; -framework QuickTime -framework Carbon -framework
    Cocoa -framework AGL -framework GLUT -framework OpenGL<br>
    libtool: link: ( cd ".libs" &amp;&amp; rm -f "gemglutwindow.la"
    &amp;&amp; ln -s "../gemglutwindow.la" "gemglutwindow.la" )<br>
    /bin/sh ../../libtool&nbsp; --tag=CXX&nbsp;&nbsp; --mode=compile g++
    -DHAVE_CONFIG_H -I. -I../../src&nbsp; -I../../src&nbsp; -DPD
    -I/Applications/Pd-extended.app/Contents/Resources/src&nbsp; -arch i386&nbsp;
    -g -O2 -Os -ffast-math -mmmx -fpascal-strings -MT
    gemmacwindow_la-gemmacwindow.lo -MD -MP -MF
    .deps/gemmacwindow_la-gemmacwindow.Tpo -c -o
    gemmacwindow_la-gemmacwindow.lo `test -f 'gemmacwindow.cpp' || echo
    './'`gemmacwindow.cpp<br>
    libtool: compile:&nbsp; g++ -DHAVE_CONFIG_H -I. -I../../src -I../../src
    -DPD -I/Applications/Pd-extended.app/Contents/Resources/src -arch
    i386 -g -O2 -Os -ffast-math -mmmx -fpascal-strings -MT
    gemmacwindow_la-gemmacwindow.lo -MD -MP -MF
    .deps/gemmacwindow_la-gemmacwindow.Tpo -c gemmacwindow.cpp&nbsp;
    -fno-common -DPIC -o .libs/gemmacwindow_la-gemmacwindow.o<br>
    [...]<br>
    gemmacwindow.cpp:269:3: error: use of undeclared identifier
    'GetPort'; did you mean 'CFRunLoopSourceContext1::getPort'?<br>
    &nbsp; GetPort (&amp;cgrafSave);<br>
    &nbsp; ^~~~~~~<br>
    &nbsp; CFRunLoopSourceContext1::getPort<br>
    /System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h:105:19:
    note: 'CFRunLoopSourceContext1::getPort' declared here<br>
    &nbsp;&nbsp;&nbsp; mach_port_t (*getPort)(void *info);<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    gemmacwindow.cpp:269:3: error: invalid use of non-static data member
    'getPort'<br>
    &nbsp; GetPort (&amp;cgrafSave);<br>
    &nbsp; ^~~~~~~<br>
    <br>
    gemmacwindow.cpp:388:13: error: use of undeclared identifier
    'GetMainDevice'<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hGD = GetMainDevice ();<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    gemmacwindow.cpp:394:21: error: use of undeclared identifier
    'DMGetFirstScreenDevice'<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hDevice = DMGetFirstScreenDevice (true);<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    gemmacwindow.cpp:399:25: error: use of undeclared identifier
    'DMGetNextScreenDevice'<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hDevice = DMGetNextScreenDevice (hDevice, true);<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    gemmacwindow.cpp:417:17: error: use of undeclared identifier
    'DMGetFirstScreenDevice'<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hGD = DMGetFirstScreenDevice (true);<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    gemmacwindow.cpp:420:34: error: use of undeclared identifier
    'DMGetNextScreenDevice'<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GDHandle hGDNext = DMGetNextScreenDevice (hGD, true);<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    gemmacwindow.cpp:438:13: error: use of undeclared identifier
    'DMGetFirstScreenDevice'<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hGD = DMGetFirstScreenDevice (true);<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    gemmacwindow.cpp:446:21: error: use of undeclared identifier
    'DMGetNextScreenDevice'<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hGD = DMGetNextScreenDevice (hGD, true);<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ^<br>
    [...]<br>
    <br>
    Is this solvable somehow? I make a branch on github to track changes
    to compile on osx.<br>
    Thanks in advance and sorry for this long mail<br>
    n<br>
    <br>
    -- <br>
    <a class="moz-txt-link-freetext" href="http://www.nimon.org">http://www.nimon.org</a><br>
    <br>
  </body>
</html>