You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.6 KiB
56 lines
1.6 KiB
Index: configure |
|
--- configure.orig 2006-02-03 10:24:40 +0100 |
|
+++ configure 2006-03-07 15:40:49 +0100 |
|
@@ -11265,16 +11265,7 @@ |
|
esac |
|
done ;; |
|
gettext-fix ) |
|
- sed -e '/^mkinstalldirs *=/a\' \ |
|
- -e "install_sh=$install_sh" \ |
|
- -e 's/^mkinstalldirs *=.*/mkinstalldirs=$(MKINSTALLDIRS)/' \ |
|
- intl/Makefile > intl/Makefile.tmp |
|
- mv intl/Makefile.tmp intl/Makefile |
|
- sed -e '/^mkinstalldirs *=/a\' \ |
|
- -e "install_sh=$install_sh" \ |
|
- -e 's/^mkinstalldirs *=.*/mkinstalldirs=$(MKINSTALLDIRS)/' \ |
|
- po/Makefile > po/Makefile.tmp |
|
- mv po/Makefile.tmp po/Makefile ;; |
|
+ ;; |
|
esac |
|
done |
|
_ACEOF |
|
Index: lib/getline.c |
|
--- lib/getline.c.orig 2005-06-21 16:09:37 +0200 |
|
+++ lib/getline.c 2006-03-07 15:37:47 +0100 |
|
@@ -23,6 +23,7 @@ |
|
|
|
#include <limits.h> |
|
#include <errno.h> |
|
+#include <sys/types.h> |
|
|
|
/* Read up to (and including) a '\n' from STREAM into *LINEPTR |
|
(and null-terminate it). *LINEPTR is a pointer returned from malloc (or |
|
Index: lib/getopt.c |
|
--- lib/getopt.c.orig 2005-06-21 16:09:37 +0200 |
|
+++ lib/getopt.c 2006-03-07 15:37:47 +0100 |
|
@@ -43,6 +43,7 @@ |
|
#endif |
|
|
|
#include <stdio.h> |
|
+#include <string.h> |
|
|
|
/* Comment out all this code if we are using the GNU C Library, and are not |
|
actually compiling the library itself. This code is part of the GNU C |
|
Index: lib/regex_internal.h |
|
--- lib/regex_internal.h.orig 2005-12-06 09:50:56 +0100 |
|
+++ lib/regex_internal.h 2006-03-07 15:37:47 +0100 |
|
@@ -410,7 +410,9 @@ |
|
#define re_string_skip_bytes(pstr,idx) ((pstr)->cur_idx += (idx)) |
|
#define re_string_set_index(pstr,idx) ((pstr)->cur_idx = (idx)) |
|
|
|
+#ifdef HAVE_ALLOCA_H |
|
#include <alloca.h> |
|
+#endif |
|
|
|
#ifndef _LIBC |
|
# if HAVE_ALLOCA
|
|
|