Fri, 09 Jan 2009 01:40:36 +0100
Import package vendor original specs for necessary manipulations.
michael@54 | 1 | Index: converter/other/jpeg2000/jpeg2ktopam.c |
michael@54 | 2 | --- converter/other/jpeg2000/jpeg2ktopam.c.orig 2005-05-19 17:29:47 +0200 |
michael@54 | 3 | +++ converter/other/jpeg2000/jpeg2ktopam.c 2006-10-24 08:07:49 +0200 |
michael@54 | 4 | @@ -9,7 +9,6 @@ |
michael@54 | 5 | *****************************************************************************/ |
michael@54 | 6 | |
michael@54 | 7 | #define _BSD_SOURCE 1 /* Make sure strdup() is in string.h */ |
michael@54 | 8 | -#define _XOPEN_SOURCE 500 /* Make sure strdup() is in string.h */ |
michael@54 | 9 | #include <string.h> |
michael@54 | 10 | |
michael@54 | 11 | #include "pam.h" |
michael@54 | 12 | Index: converter/other/jpeg2000/pamtojpeg2k.c |
michael@54 | 13 | --- converter/other/jpeg2000/pamtojpeg2k.c.orig 2005-02-21 04:56:41 +0100 |
michael@54 | 14 | +++ converter/other/jpeg2000/pamtojpeg2k.c 2006-10-24 08:07:49 +0200 |
michael@54 | 15 | @@ -9,7 +9,6 @@ |
michael@54 | 16 | *****************************************************************************/ |
michael@54 | 17 | |
michael@54 | 18 | #define _BSD_SOURCE 1 /* Make sure strdup() is in string.h */ |
michael@54 | 19 | -#define _XOPEN_SOURCE 500 /* Make sure strdup() is in string.h */ |
michael@54 | 20 | #include <string.h> |
michael@54 | 21 | |
michael@54 | 22 | #include "pam.h" |
michael@54 | 23 | Index: lib/libpm.c |
michael@54 | 24 | --- lib/libpm.c.orig 2004-11-20 17:55:27 +0100 |
michael@54 | 25 | +++ lib/libpm.c 2006-10-24 08:07:49 +0200 |
michael@54 | 26 | @@ -617,7 +617,7 @@ |
michael@54 | 27 | pm_openr(const char * const name) { |
michael@54 | 28 | FILE* f; |
michael@54 | 29 | |
michael@54 | 30 | - if (strcmp(name, "-") == 0) |
michael@54 | 31 | + if (name == NULL || strcmp(name, "-") == 0) |
michael@54 | 32 | f = stdin; |
michael@54 | 33 | else { |
michael@54 | 34 | #ifndef VMS |
michael@54 | 35 | @@ -639,7 +639,7 @@ |
michael@54 | 36 | pm_openw(const char * const name) { |
michael@54 | 37 | FILE* f; |
michael@54 | 38 | |
michael@54 | 39 | - if (strcmp(name, "-") == 0) |
michael@54 | 40 | + if (name == NULL || strcmp(name, "-") == 0) |
michael@54 | 41 | f = stdout; |
michael@54 | 42 | else { |
michael@54 | 43 | #ifndef VMS |
michael@54 | 44 | Index: lib/pm_gamma.h |
michael@54 | 45 | --- lib/pm_gamma.h.orig 2004-06-13 00:53:25 +0200 |
michael@54 | 46 | +++ lib/pm_gamma.h 2006-10-24 08:18:26 +0200 |
michael@54 | 47 | @@ -5,7 +5,7 @@ |
michael@54 | 48 | |
michael@54 | 49 | #include <math.h> |
michael@54 | 50 | |
michael@54 | 51 | -static __inline__ float |
michael@54 | 52 | +static float |
michael@54 | 53 | pm_gamma709(float const intensity) { |
michael@54 | 54 | |
michael@54 | 55 | /* Here are parameters of the gamma transfer function |
michael@54 | 56 | @@ -34,7 +34,7 @@ |
michael@54 | 57 | |
michael@54 | 58 | |
michael@54 | 59 | |
michael@54 | 60 | -static __inline__ float |
michael@54 | 61 | +static float |
michael@54 | 62 | pm_ungamma709(float const brightness) { |
michael@54 | 63 | |
michael@54 | 64 | /* These are the same parameters as in pm_gamma, above */ |