diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-08-18 18:14:09 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-08-18 18:14:09 +0100 |
commit | d3983072bc481df2803c12944f2eca6f7aa79809 (patch) | |
tree | 2249ca95498e58fb8edcc8cc072af7bfc7860c77 /meta/packages/gettext/gettext-0.17 | |
parent | b2d195641dcbd4939680c1ab7bd51863b68bcc55 (diff) | |
download | poky-d3983072bc481df2803c12944f2eca6f7aa79809.tar.gz |
Add gettext 0.17 (from OE.dev)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/gettext/gettext-0.17')
4 files changed, 186 insertions, 0 deletions
diff --git a/meta/packages/gettext/gettext-0.17/autotools.patch b/meta/packages/gettext/gettext-0.17/autotools.patch new file mode 100644 index 0000000000..9f16b1881f --- /dev/null +++ b/meta/packages/gettext/gettext-0.17/autotools.patch | |||
@@ -0,0 +1,62 @@ | |||
1 | Index: gettext-0.17/gettext-runtime/man/Makefile.am | ||
2 | =================================================================== | ||
3 | --- gettext-0.17.orig/gettext-runtime/man/Makefile.am 2007-10-07 21:37:36.000000000 +0200 | ||
4 | +++ gettext-0.17/gettext-runtime/man/Makefile.am 2008-05-09 22:46:37.000000000 +0200 | ||
5 | @@ -158,8 +158,7 @@ | ||
6 | $(MAN2HTML) $(srcdir)/bind_textdomain_codeset.3.in | sed -e '/CreationDate:/d' > t-$@ | ||
7 | mv t-$@ $@ | ||
8 | |||
9 | -install-html-local: | ||
10 | - $(mkdir_p) $(DESTDIR)$(htmldir) | ||
11 | +install-html: installdirs-html | ||
12 | for file in $(man_HTML); do \ | ||
13 | if test -f $$file; then dir=.; else dir=$(srcdir); fi; \ | ||
14 | $(INSTALL_DATA) $$dir/$$file $(DESTDIR)$(htmldir)/$$file; \ | ||
15 | Index: gettext-0.17/gettext-tools/man/Makefile.am | ||
16 | =================================================================== | ||
17 | --- gettext-0.17.orig/gettext-tools/man/Makefile.am 2007-10-28 00:18:37.000000000 +0200 | ||
18 | +++ gettext-0.17/gettext-tools/man/Makefile.am 2008-05-09 22:46:37.000000000 +0200 | ||
19 | @@ -186,8 +186,7 @@ | ||
20 | $(MAN2HTML) `if test -f autopoint.1; then echo .; else echo $(srcdir); fi`/autopoint.1 | sed -e '/CreationDate:/d' > t-$@ | ||
21 | mv t-$@ $@ | ||
22 | |||
23 | -install-html-local: | ||
24 | - $(mkdir_p) $(DESTDIR)$(htmldir) | ||
25 | +install-html: installdirs-html | ||
26 | for file in $(man_HTML); do \ | ||
27 | if test -f $$file; then dir=.; else dir=$(srcdir); fi; \ | ||
28 | $(INSTALL_DATA) $$dir/$$file $(DESTDIR)$(htmldir)/$$file; \ | ||
29 | Index: gettext-0.17/gettext-runtime/libasprintf/configure.ac | ||
30 | =================================================================== | ||
31 | --- gettext-0.17.orig/gettext-runtime/libasprintf/configure.ac 2008-05-09 22:53:42.000000000 +0200 | ||
32 | +++ gettext-0.17/gettext-runtime/libasprintf/configure.ac 2008-05-09 22:53:54.000000000 +0200 | ||
33 | @@ -1,5 +1,5 @@ | ||
34 | dnl Configuration for the GNU libasprintf library | ||
35 | -dnl Copyright (C) 2002-2006 Free Software Foundation, Inc. | ||
36 | +dnl Copyright (C) 2002-2007 Free Software Foundation, Inc. | ||
37 | dnl | ||
38 | dnl This program is free software: you can redistribute it and/or modify | ||
39 | dnl it under the terms of the GNU General Public License as published by | ||
40 | @@ -54,8 +54,7 @@ | ||
41 | dnl Checks for typedefs, structures, and compiler characteristics. | ||
42 | AC_C_INLINE | ||
43 | AC_TYPE_SIZE_T | ||
44 | -gl_AC_TYPE_LONG_LONG | ||
45 | -gt_TYPE_LONGDOUBLE | ||
46 | +AC_TYPE_LONG_LONG_INT | ||
47 | gt_TYPE_WCHAR_T | ||
48 | gt_TYPE_WINT_T | ||
49 | AC_CHECK_TYPE([ptrdiff_t], , | ||
50 | @@ -79,8 +78,11 @@ | ||
51 | AC_SUBST([ALLOCA_H]) | ||
52 | |||
53 | AC_CHECK_FUNCS([snprintf vasprintf wcslen]) | ||
54 | -AC_CHECK_DECLS([_snprintf]) | ||
55 | +dnl Use the _snprintf function only if it is declared (because on NetBSD it | ||
56 | +dnl is defined as a weak alias of snprintf; we prefer to use the latter). | ||
57 | +AC_CHECK_DECLS([_snprintf], , , [#include <stdio.h>]) | ||
58 | gt_PRINTF_POSIX | ||
59 | +gl_EOVERFLOW | ||
60 | |||
61 | dnl Check for tools needed for formatting the documentation. | ||
62 | ac_aux_dir_abs=`cd $ac_aux_dir && pwd` | ||
diff --git a/meta/packages/gettext/gettext-0.17/gettext-error_print_progname.patch b/meta/packages/gettext/gettext-0.17/gettext-error_print_progname.patch new file mode 100644 index 0000000000..0f67cd0b2e --- /dev/null +++ b/meta/packages/gettext/gettext-0.17/gettext-error_print_progname.patch | |||
@@ -0,0 +1,13 @@ | |||
1 | Index: gettext-0.17/gettext-tools/libgettextpo/error.h | ||
2 | =================================================================== | ||
3 | --- gettext-0.17.orig/gettext-tools/libgettextpo/error.h 2008-07-27 21:16:25.561115527 +0200 | ||
4 | +++ gettext-0.17/gettext-tools/libgettextpo/error.h 2008-07-27 21:16:52.454440505 +0200 | ||
5 | @@ -49,7 +49,7 @@ | ||
6 | /* If NULL, error will flush stdout, then print on stderr the program | ||
7 | name, a colon and a space. Otherwise, error will call this | ||
8 | function without parameters instead. */ | ||
9 | -extern DLL_VARIABLE void (*error_print_progname) (void); | ||
10 | +void (*error_print_progname) (void); | ||
11 | |||
12 | /* This variable is incremented each time `error' is called. */ | ||
13 | extern DLL_VARIABLE unsigned int error_message_count; | ||
diff --git a/meta/packages/gettext/gettext-0.17/use_open_properly.patch b/meta/packages/gettext/gettext-0.17/use_open_properly.patch new file mode 100644 index 0000000000..111714b543 --- /dev/null +++ b/meta/packages/gettext/gettext-0.17/use_open_properly.patch | |||
@@ -0,0 +1,15 @@ | |||
1 | Index: gettext-0.17/gettext-tools/src/write-catalog.c | ||
2 | =================================================================== | ||
3 | --- gettext-0.17.orig/gettext-tools/src/write-catalog.c 2008-10-16 15:18:16.000000000 +0200 | ||
4 | +++ gettext-0.17/gettext-tools/src/write-catalog.c 2008-10-16 18:17:13.000000000 +0200 | ||
5 | @@ -220,7 +220,9 @@ | ||
6 | /* Open the output file. */ | ||
7 | if (!to_stdout) | ||
8 | { | ||
9 | - fd = open (filename, O_WRONLY | O_CREAT); | ||
10 | + fd = open (filename, O_WRONLY | O_CREAT, | ||
11 | + /* 0666 in portable POSIX notation: */ | ||
12 | + S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH); | ||
13 | if (fd < 0) | ||
14 | { | ||
15 | const char *errno_description = strerror (errno); | ||
diff --git a/meta/packages/gettext/gettext-0.17/wchar-uclibc.patch b/meta/packages/gettext/gettext-0.17/wchar-uclibc.patch new file mode 100644 index 0000000000..7b3880bf77 --- /dev/null +++ b/meta/packages/gettext/gettext-0.17/wchar-uclibc.patch | |||
@@ -0,0 +1,96 @@ | |||
1 | Index: gettext-0.17/gettext-runtime/gnulib-lib/wchar.in.h | ||
2 | =================================================================== | ||
3 | --- gettext-0.17.orig/gettext-runtime/gnulib-lib/wchar.in.h 2008-07-29 14:51:52.336394636 +0200 | ||
4 | +++ gettext-0.17/gettext-runtime/gnulib-lib/wchar.in.h 2008-07-29 14:52:25.546430195 +0200 | ||
5 | @@ -1,6 +1,6 @@ | ||
6 | /* A substitute for ISO C99 <wchar.h>, for platforms that have issues. | ||
7 | |||
8 | - Copyright (C) 2007 Free Software Foundation, Inc. | ||
9 | + Copyright (C) 2007-2008 Free Software Foundation, Inc. | ||
10 | |||
11 | This program is free software; you can redistribute it and/or modify | ||
12 | it under the terms of the GNU General Public License as published by | ||
13 | @@ -26,6 +26,14 @@ | ||
14 | * the declaration of wcwidth(). | ||
15 | */ | ||
16 | |||
17 | +#ifdef __need_mbstate_t | ||
18 | +/* Special invocation convention inside uClibc header files. */ | ||
19 | + | ||
20 | +#@INCLUDE_NEXT@ @NEXT_WCHAR_H@ | ||
21 | + | ||
22 | +#else | ||
23 | +/* Normal invocation convention. */ | ||
24 | + | ||
25 | #ifndef _GL_WCHAR_H | ||
26 | |||
27 | /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before | ||
28 | @@ -80,3 +88,4 @@ | ||
29 | |||
30 | #endif /* _GL_WCHAR_H */ | ||
31 | #endif /* _GL_WCHAR_H */ | ||
32 | +#endif | ||
33 | Index: gettext-0.17/gettext-tools/gnulib-lib/wchar.in.h | ||
34 | =================================================================== | ||
35 | --- gettext-0.17.orig/gettext-tools/gnulib-lib/wchar.in.h 2008-07-29 14:52:03.886393956 +0200 | ||
36 | +++ gettext-0.17/gettext-tools/gnulib-lib/wchar.in.h 2008-07-29 14:52:50.876388000 +0200 | ||
37 | @@ -1,6 +1,6 @@ | ||
38 | /* A substitute for ISO C99 <wchar.h>, for platforms that have issues. | ||
39 | |||
40 | - Copyright (C) 2007 Free Software Foundation, Inc. | ||
41 | + Copyright (C) 2007-2008 Free Software Foundation, Inc. | ||
42 | |||
43 | This program is free software; you can redistribute it and/or modify | ||
44 | it under the terms of the GNU General Public License as published by | ||
45 | @@ -26,6 +26,14 @@ | ||
46 | * the declaration of wcwidth(). | ||
47 | */ | ||
48 | |||
49 | +#ifdef __need_mbstate_t | ||
50 | +/* Special invocation convention inside uClibc header files. */ | ||
51 | + | ||
52 | +#@INCLUDE_NEXT@ @NEXT_WCHAR_H@ | ||
53 | + | ||
54 | +#else | ||
55 | +/* Normal invocation convention. */ | ||
56 | + | ||
57 | #ifndef _GL_WCHAR_H | ||
58 | |||
59 | /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before | ||
60 | @@ -80,3 +88,4 @@ | ||
61 | |||
62 | #endif /* _GL_WCHAR_H */ | ||
63 | #endif /* _GL_WCHAR_H */ | ||
64 | +#endif | ||
65 | Index: gettext-0.17/gettext-tools/libgettextpo/wchar.in.h | ||
66 | =================================================================== | ||
67 | --- gettext-0.17.orig/gettext-tools/libgettextpo/wchar.in.h 2008-07-29 14:51:58.826395009 +0200 | ||
68 | +++ gettext-0.17/gettext-tools/libgettextpo/wchar.in.h 2008-07-29 14:52:38.609723575 +0200 | ||
69 | @@ -1,6 +1,6 @@ | ||
70 | /* A substitute for ISO C99 <wchar.h>, for platforms that have issues. | ||
71 | |||
72 | - Copyright (C) 2007 Free Software Foundation, Inc. | ||
73 | + Copyright (C) 2007-2008 Free Software Foundation, Inc. | ||
74 | |||
75 | This program is free software; you can redistribute it and/or modify | ||
76 | it under the terms of the GNU General Public License as published by | ||
77 | @@ -26,6 +26,14 @@ | ||
78 | * the declaration of wcwidth(). | ||
79 | */ | ||
80 | |||
81 | +#ifdef __need_mbstate_t | ||
82 | +/* Special invocation convention inside uClibc header files. */ | ||
83 | + | ||
84 | +#@INCLUDE_NEXT@ @NEXT_WCHAR_H@ | ||
85 | + | ||
86 | +#else | ||
87 | +/* Normal invocation convention. */ | ||
88 | + | ||
89 | #ifndef _GL_WCHAR_H | ||
90 | |||
91 | /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before | ||
92 | @@ -80,3 +88,4 @@ | ||
93 | |||
94 | #endif /* _GL_WCHAR_H */ | ||
95 | #endif /* _GL_WCHAR_H */ | ||
96 | +#endif | ||