-
Notifications
You must be signed in to change notification settings - Fork 24
giflib 5.1.1.mk
Mark Johnson edited this page Mar 8, 2018
·
3 revisions
giflib-5.1.1.mk - for Rasterlite2
The original source code archive can be found in the archive
directory
compile errors
giflib-5.1.1/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
- it seems they have been deprecated
- On Linux, sys/stat.h has the following defines
-
code change
-
/giflib-5.1.1/lib/gif_lib.h
: added# define S_IREAD S_IRUSR
# define S_IWRITE S_IWUSR
# define S_IEXEC S_IXUSR
-
2015-06-27: Mark Johnson, Berlin Germany