TrilbyWhite / Slider

PDF presentation tool
GNU General Public License v3.0
54 stars 12 forks source link

END_RENDER is undeclared #8

Closed mokasin closed 11 years ago

mokasin commented 11 years ago
render.c: In function 'render_threaded':
render.c:71:51: error: 'END_RENDER' undeclared (first use in this function)
  for (i = 0; i < show->count && !(show->flag[0] & END_RENDER); i++) {
                                                   ^
render.c:71:51: note: each undeclared identifier is reported only once for each function it appears in
render.c: In function 'free_renderings':
render.c:138:19: error: 'END_RENDER' undeclared (first use in this function)
  show->flag[0] |= END_RENDER;
                   ^
make: *** [slider] Error 1

poppler-glib and libxrandr are installed using Arch Linux.

TrilbyWhite commented 11 years ago

Crap, sorry about that. I had called it END_RENDER in one file and STOP_RENDER in the other.

I fixed it yesterday, but apparently I forgot to push to github.

Just pushed the fix, please confirm.

mokasin commented 11 years ago

bf61edf93a114d60f5429ffd178963055f3061d4 fixes the issue. Thx!