aboutsummaryrefslogtreecommitdiff
path: root/devel/gmake/files
diff options
context:
space:
mode:
authorDmitry Sivachenko <demon@FreeBSD.org>2002-10-07 19:14:30 +0000
committerDmitry Sivachenko <demon@FreeBSD.org>2002-10-07 19:14:30 +0000
commit4c5aa004ecc822d83646b1d53a613339869d3475 (patch)
tree429e981cdfed9dc73aa4025f33f9c11f7d58d06a /devel/gmake/files
parentecf90812e780730587180eff17aec9fcd88213ec (diff)
downloadports-4c5aa004ecc822d83646b1d53a613339869d3475.tar.gz
ports-4c5aa004ecc822d83646b1d53a613339869d3475.zip
Notes
Diffstat (limited to 'devel/gmake/files')
-rw-r--r--devel/gmake/files/patch-aa18
-rw-r--r--devel/gmake/files/patch-ab6
-rw-r--r--devel/gmake/files/patch-gettext.c32
3 files changed, 12 insertions, 44 deletions
diff --git a/devel/gmake/files/patch-aa b/devel/gmake/files/patch-aa
index a4ee85a822cd..b037a724fb6a 100644
--- a/devel/gmake/files/patch-aa
+++ b/devel/gmake/files/patch-aa
@@ -1,11 +1,11 @@
---- Makefile.in.orig Wed Apr 5 11:23:54 2000
-+++ Makefile.in Tue Apr 25 17:27:41 2000
-@@ -72,7 +72,7 @@
- GLOBINC = @GLOBINC@
- GLOBLIB = @GLOBLIB@
- LIBOBJS = @LIBOBJS@
+--- doc/Makefile.in.orig Mon Oct 7 23:09:23 2002
++++ doc/Makefile.in Mon Oct 7 23:09:31 2002
+@@ -76,7 +76,7 @@
+ LTLIBICONV = @LTLIBICONV@
+ LTLIBINTL = @LTLIBINTL@
+ LTLIBOBJS = @LTLIBOBJS@
-MAKEINFO = @MAKEINFO@
+MAKEINFO = @MAKEINFO@ --no-split
- MOFILES = @MOFILES@
- PACKAGE = @PACKAGE@
- PERL = @PERL@
+ MAKE_HOST = @MAKE_HOST@
+ MKINSTALLDIRS = @MKINSTALLDIRS@
+ MSGFMT = @MSGFMT@
diff --git a/devel/gmake/files/patch-ab b/devel/gmake/files/patch-ab
index 4e02af526f68..4d7d9551e18b 100644
--- a/devel/gmake/files/patch-ab
+++ b/devel/gmake/files/patch-ab
@@ -1,6 +1,6 @@
---- make.texinfo.orig Thu Sep 23 13:40:19 1999
-+++ make.texinfo Wed Dec 1 09:03:16 1999
-@@ -24,9 +24,9 @@
+--- doc/make.texi.orig Mon Oct 7 22:57:59 2002
++++ doc/make.texi Mon Oct 7 22:58:03 2002
+@@ -25,9 +25,9 @@
@c Combine the program and concept indices:
@syncodeindex pg cp
diff --git a/devel/gmake/files/patch-gettext.c b/devel/gmake/files/patch-gettext.c
deleted file mode 100644
index fd98d7e3604d..000000000000
--- a/devel/gmake/files/patch-gettext.c
+++ /dev/null
@@ -1,32 +0,0 @@
-
-$FreeBSD$
-
---- gettext.c.orig Wed Feb 9 08:02:18 2000
-+++ gettext.c Sun Jul 28 04:22:31 2002
-@@ -22,6 +22,10 @@
- # include <config.h>
- #endif
-
-+#if defined HAVE_LOCALE_H || defined _LIBC
-+# include <locale.h>
-+#endif
-+
- #ifdef __GNUC__
- # define alloca __builtin_alloca
- # define HAVE_ALLOCA 1
-@@ -1294,6 +1298,15 @@
- {
- FREE_BLOCKS (block_list);
- return added;
-+ }
-+ if (string_space != new_pool)
-+ {
-+ size_t i;
-+ for (i = 0; i < nmap; i++)
-+ {
-+ map[i].alias += new_pool - string_space;
-+ map[i].value += new_pool - string_space;
-+ }
- }
- string_space = new_pool;
- string_space_max = new_size;