diff options
| author | Manolo Gouy <Manolo> | 2011-01-06 13:17:21 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2011-01-06 13:17:21 +0000 |
| commit | 22111debb86ae720d29325ddcdd6e7fd59de0ec4 (patch) | |
| tree | 2716d244a3a275d5321716df04d25f4a9a7e8dec | |
| parent | 0e066f5511a34e01379a7e2044531d41791335ca (diff) | |
Fixed use of FLTK_HAVE_CAIRO under Mac OS.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8201 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | cairo/Makefile | 1 | ||||
| -rw-r--r-- | test/cairo_test.cxx | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/cairo/Makefile b/cairo/Makefile index cc854ebb8..24a8f3249 100644 --- a/cairo/Makefile +++ b/cairo/Makefile @@ -25,6 +25,7 @@ # http://www.fltk.org/str.php # +FLTKFLAGS = -DFL_LIBRARY include ../makeinclude # diff --git a/test/cairo_test.cxx b/test/cairo_test.cxx index 261cc512c..89811869c 100644 --- a/test/cairo_test.cxx +++ b/test/cairo_test.cxx @@ -151,9 +151,9 @@ int main(int argc, char** argv) { window.resizable(&window); window.color(FL_WHITE); - window.show(argc,argv); window.set_draw_cb(my_cairo_draw_cb); - + window.show(argc,argv); + return Fl::run(); } #else |
