Skip to content
Mark Johnson edited this page Mar 10, 2018 · 1 revision

<-- 'List of Themes'

<-- 'List of Projects'


giflib-5.1.4.mk - for Rasterlite2

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



compile errors

  • giflib-5.1.4/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.1.4/lib/gif_lib.h: added
      • # define S_IREAD S_IRUSR
      • # define S_IWRITE S_IWUSR
      • # define S_IEXEC S_IXUSR

As with version 5.1.1, 5.1.4 still has this problem

  • reporting an issue on their homepage is not possible

2018-03-10: Mark Johnson, Berlin Germany


Clone this wiki locally