summaryrefslogtreecommitdiff
path: root/devel/m4/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2009-04-20 09:57:37 +0000
committerwiz <wiz@pkgsrc.org>2009-04-20 09:57:37 +0000
commit48be8d78a92849bf07d7709d8227fc7a1945377f (patch)
tree3ab4f7a64ee3c952ceb1b81bbd89651b6ee6df8b /devel/m4/patches
parentc496deb6e5a6eb14431cc1e8a5c42524250dfa1b (diff)
downloadpkgsrc-48be8d78a92849bf07d7709d8227fc7a1945377f.tar.gz
Update to 1.4.13. Set LICENSE (gnu-gpl-v3).
* Noteworthy changes in Version 1.4.13 (2009-04-01) [stable] Released by Eric Blake, based on git version 1.4.12.* ** The manual is now distributed under the terms of FDL 1.3. ** The `divert' and `undivert' builtins have been made more efficient when using temporary files for large diversions. ** The `translit' builtin has been made more efficient when the second argument is short. ** The input engine has been optimized for faster processing. ** The command line option `--debugfile', introduced in 1.4.7, now treats its argument as optional, in order to allow setting the debug output back to stderr when used without an argument; and order is now significant with respect to command line files. You must therefore use `m4 --debugfile=trace file', not `m4 file --debugfile trace'. This change does not affect the deprecated `-o'/`--error-output' option. ** The `syscmd' and `esyscmd' builtins can be configured to use an alternate shell, via the new `configure' option `--with-syscmd-shell'. ** A number of portability improvements inherited from gnulib.
Diffstat (limited to 'devel/m4/patches')
-rw-r--r--devel/m4/patches/patch-aa23
-rw-r--r--devel/m4/patches/patch-ac13
-rw-r--r--devel/m4/patches/patch-ad29
3 files changed, 0 insertions, 65 deletions
diff --git a/devel/m4/patches/patch-aa b/devel/m4/patches/patch-aa
deleted file mode 100644
index c59af44c227..00000000000
--- a/devel/m4/patches/patch-aa
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-aa,v 1.11 2008/10/24 12:37:37 wiz Exp $
-
-2008-10-23 Bruno Haible <bruno@clisp.org>
- Define a dummy SA_NODEFER macro on Interix.
- * lib/signal.in.h (SA_NODEFER): Define fallback.
- Reported by Aleksey Cheusov <cheusov@tut.by> via
- Thomas Klausner <wiz@netbsd.org> and Eric Blake.
-
---- lib/signal.in.h.orig 2008-09-26 12:32:24.000000000 +0000
-+++ lib/signal.in.h
-@@ -176,6 +176,12 @@ extern int sigaction (int, const struct
- #endif /* !@HAVE_SIGACTION@, !@HAVE_STRUCT_SIGACTION_SA_SIGACTION@ */
-
-
-+/* Some systems don't have SA_NODEFER. */
-+#ifndef SA_NODEFER
-+# define SA_NODEFER 0
-+#endif
-+
-+
- #ifdef __cplusplus
- }
- #endif
diff --git a/devel/m4/patches/patch-ac b/devel/m4/patches/patch-ac
deleted file mode 100644
index c73bef9ead8..00000000000
--- a/devel/m4/patches/patch-ac
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ac,v 1.8 2008/04/29 13:54:55 wiz Exp $
-
---- lib/freading.c.orig 2007-11-10 15:24:02 -0800
-+++ lib/freading.c 2008-04-14 17:41:47 -0700
-@@ -42,6 +42,8 @@
- #elif defined __QNX__ /* QNX */
- return ((fp->_Mode & 0x2 /* _MOPENW */) == 0
- || (fp->_Mode & 0x1000 /* _MREAD */) != 0);
-+#elif defined __DragonFly__ /* DragonFly */
-+ return ((((struct __FILE_public *)fp)->_flags & __SRD) != 0);
- #else
- #error "Please port gnulib freading.c to your platform!"
- #endif
diff --git a/devel/m4/patches/patch-ad b/devel/m4/patches/patch-ad
deleted file mode 100644
index 797902b2335..00000000000
--- a/devel/m4/patches/patch-ad
+++ /dev/null
@@ -1,29 +0,0 @@
-$NetBSD: patch-ad,v 1.5 2008/10/14 12:29:11 wiz Exp $
-
---- lib/fseeko.c.orig 2008-08-05 13:16:44.000000000 +0000
-+++ lib/fseeko.c
-@@ -25,6 +25,18 @@
-
- #include "stdio-impl.h"
-
-+#ifdef __DragonFly__
-+
-+#undef fseeko
-+
-+int
-+rpl_fseeko (FILE *fp, off_t offset, int whence)
-+{
-+ return(fseeko(fp, offset, whence));
-+}
-+
-+#else
-+
- #undef fseeko
- #if !HAVE_FSEEKO
- # undef fseek
-@@ -111,3 +123,5 @@ rpl_fseeko (FILE *fp, off_t offset, int
- else
- return fseeko (fp, offset, whence);
- }
-+
-+#endif