Skip to content
Mark Johnson edited this page Mar 8, 2018 · 7 revisions

<-- 'List of Themes'

<-- 'List of Projects'


giflib-5.0.6.mk - for Rasterlite2

The original source code archive can be found in the archive directory



compile errors

  • giflib-5.0.6/lib/egif_lib.c
 error: 'S_IREAD' undeclared
 error: 'S_IWRITE' undeclared
  • cause
    • On Linux, sys/stat.h has the following defines
      • it seems they have been deprecated
        • but are still used in this older code

  • code change
    • /giflib-5.0.6/lib/gif_lib.h: added
      • # define S_IREAD S_IRUSR
      • # define S_IWRITE S_IWUSR
      • # define S_IEXEC S_IXUSR

2014-05-05: Mark Johnson, Berlin Germany


Clone this wiki locally