diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2007-02-22 12:03:46 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2007-02-22 12:03:46 +0000 |
| commit | 769c6a8e5027a1b89901769fa16b07195d1b1401 (patch) | |
| tree | 42929278b44c7b1cf374ef42b191ba6cb26ab7cc | |
| parent | e954c5d4337746150d880d37f0016c378b065735 (diff) | |
Enable threading and large file support in the sample RPM spec file (STR #1603)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5707 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | CHANGES | 14 | ||||
| -rw-r--r-- | fltk.spec.in | 2 |
2 files changed, 9 insertions, 7 deletions
@@ -2,12 +2,14 @@ CHANGES IN FLTK 1.1.8 - Documentation fixes (STR #1454, STR #1455, STR #1456, STR #1457, STR #1458, STR #1460, STR #1481, STR #1578) - - Flushing file chooser preferences after every change - to avoid data loss (STR #1609) - - Fixed file chooser to behave transparently to the current - group setting (STR #1611) - - Fixed clipping in OS X Quartz offscreen buffers - (STR 1595) + - The sample RPM spec file now enables large file support + and threading support (STR #1603) + - Fixed clipping in OS X Quartz offscreen buffers (STR + #1595) + - Now flush file chooser preferences after every change to + avoid data loss (STR #1609) + - The Fl_File_Chooser constructor now saves and restores the + current group (STR #1611) - Added Fl::set_awake_cb() to set a handler for thread messages (STR #1536) - Added "mute sound" option to Sudoku game. diff --git a/fltk.spec.in b/fltk.spec.in index 83d94284f..dec9d50aa 100644 --- a/fltk.spec.in +++ b/fltk.spec.in @@ -68,7 +68,7 @@ Install fltk-games to play Block Attack!, Checkers, or Sudoku on your computer. %setup %build -CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --mandir=%{_mandir} --enable-shared --enable-xft --enable-xdbe --enable-xinerama +CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --mandir=%{_mandir} --enable-largefile --enable-shared --enable-threads --enable-xft --enable-xdbe --enable-xinerama # If we got this far, all prerequisite libraries must be here. make |
