Index: converter/other/jpeg2000/jpeg2ktopam.c --- converter/other/jpeg2000/jpeg2ktopam.c.orig 2005-05-19 17:29:47 +0200 +++ converter/other/jpeg2000/jpeg2ktopam.c 2006-10-24 08:07:49 +0200 @@ -9,7 +9,6 @@ *****************************************************************************/ #define _BSD_SOURCE 1 /* Make sure strdup() is in string.h */ -#define _XOPEN_SOURCE 500 /* Make sure strdup() is in string.h */ #include #include "pam.h" Index: converter/other/jpeg2000/pamtojpeg2k.c --- converter/other/jpeg2000/pamtojpeg2k.c.orig 2005-02-21 04:56:41 +0100 +++ converter/other/jpeg2000/pamtojpeg2k.c 2006-10-24 08:07:49 +0200 @@ -9,7 +9,6 @@ *****************************************************************************/ #define _BSD_SOURCE 1 /* Make sure strdup() is in string.h */ -#define _XOPEN_SOURCE 500 /* Make sure strdup() is in string.h */ #include #include "pam.h" Index: lib/libpm.c --- lib/libpm.c.orig 2004-11-20 17:55:27 +0100 +++ lib/libpm.c 2006-10-24 08:07:49 +0200 @@ -617,7 +617,7 @@ pm_openr(const char * const name) { FILE* f; - if (strcmp(name, "-") == 0) + if (name == NULL || strcmp(name, "-") == 0) f = stdin; else { #ifndef VMS @@ -639,7 +639,7 @@ pm_openw(const char * const name) { FILE* f; - if (strcmp(name, "-") == 0) + if (name == NULL || strcmp(name, "-") == 0) f = stdout; else { #ifndef VMS Index: lib/pm_gamma.h --- lib/pm_gamma.h.orig 2004-06-13 00:53:25 +0200 +++ lib/pm_gamma.h 2006-10-24 08:18:26 +0200 @@ -5,7 +5,7 @@ #include -static __inline__ float +static float pm_gamma709(float const intensity) { /* Here are parameters of the gamma transfer function @@ -34,7 +34,7 @@ -static __inline__ float +static float pm_ungamma709(float const brightness) { /* These are the same parameters as in pm_gamma, above */