Author: manolo Date: 2011-01-06 05:17:21 -0800 (Thu, 06 Jan 2011) New Revision: 8201 Log: Fixed use of FLTK_HAVE_CAIRO under Mac OS.
Modified: branches/branch-1.3/cairo/Makefile branches/branch-1.3/test/cairo_test.cxx Modified: branches/branch-1.3/cairo/Makefile =================================================================== --- branches/branch-1.3/cairo/Makefile 2011-01-06 10:27:18 UTC (rev 8200) +++ branches/branch-1.3/cairo/Makefile 2011-01-06 13:17:21 UTC (rev 8201) @@ -25,6 +25,7 @@ # http://www.fltk.org/str.php # +FLTKFLAGS = -DFL_LIBRARY include ../makeinclude # Modified: branches/branch-1.3/test/cairo_test.cxx =================================================================== --- branches/branch-1.3/test/cairo_test.cxx 2011-01-06 10:27:18 UTC (rev 8200) +++ branches/branch-1.3/test/cairo_test.cxx 2011-01-06 13:17:21 UTC (rev 8201) @@ -151,9 +151,9 @@ window.resizable(&window); window.color(FL_WHITE); + window.set_draw_cb(my_cairo_draw_cb); window.show(argc,argv); - window.set_draw_cb(my_cairo_draw_cb); - + return Fl::run(); } #else _______________________________________________ fltk-commit mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-commit
