diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-09-29 20:51:36 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-09-29 20:51:36 +0300 |
commit | 473514a9e20bf368fab8510bfe71adcc5ef27fe5 (patch) | |
tree | c809de4ce877583b4f8ae7bfacc9767759d27c8c /gettext | |
parent | e177e5bef0586fcba8eae8d3c9871da189ddcbea (diff) |
Add gettext-0.18.1.1.stpncpy.patch
Diffstat (limited to 'gettext')
-rw-r--r-- | gettext/gettext-0.18.1.1.stpncpy.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gettext/gettext-0.18.1.1.stpncpy.patch b/gettext/gettext-0.18.1.1.stpncpy.patch new file mode 100644 index 000000000000..a9400867a53e --- /dev/null +++ b/gettext/gettext-0.18.1.1.stpncpy.patch @@ -0,0 +1,12 @@ +--- misc/gettext-0.18.1.1/gettext-tools/configure 2010-06-06 22:12:20.000000000 +0200 ++++ misc/build/gettext-0.18.1.1/gettext-tools/configure 2011-08-12 22:46:06.000000000 +0200 +@@ -40606,7 +40606,9 @@ + #include <stdlib.h> + #include <string.h> /* for strcpy */ + /* The stpncpy prototype is missing in <string.h> on AIX 4. */ ++#if !defined stpncpy /* see <https://savannah.gnu.org/bugs/index.php?33999> */ + extern char *stpncpy (char *dest, const char *src, size_t n); ++#endif + int main () { + const char *src = "Hello"; + char dest[10]; |