DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2678
Version: 1.3.0


I don't remember, it's too old. The best is probably to get
ftp://ftp-fourier.ujf-grenoble.fr/linux/xcas/freebsd/fltk-1.3.0/src/Fl_PostScript.cxx
and compare. I also made the following comments for all the changes I had
to make to get everything compile on Mac, cygwin and linux x86 and ARM
*and* compile with my codebase.
FL/Fl_Input.H: line 266, changed from protected to public for draw()
FL/Fl_Device.H:#define FL_REGION_STACK_SIZE 100 instead of 10
src/gl_start.cxx: removed static line 58 for gl_choice
FL/Fl_Window.H: added public method   void * window_ref() const;
FL/Fl_Window.cxx: implemented as
void * Fl_Window::window_ref() const {
#ifdef __APPLE__
  return Fl_X::i(this)->window_ref();
#else
  return 0;
#endif
}
src/gl_draw.cxx: #define GL_DRAW_USES_TEXTURES  0 // (defined(__APPLE__)
&& !__p
pc__) // 1 only for non-PPC OSX
makeinclude: disable x64 using ARCHFLAGS        = -arch i386 # -arch
x86_64

Various changes in Fl_Postscript.cxx to support encapsulated postscript, 
changed driver() from protected to public in Fl_Postscript.H


Link: http://www.fltk.org/str.php?L2678
Version: 1.3.0

_______________________________________________
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs

Reply via email to