summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfrueauf <frueauf@pkgsrc.org>1998-04-18 16:53:28 +0000
committerfrueauf <frueauf@pkgsrc.org>1998-04-18 16:53:28 +0000
commit0a48810319c85bb7c595102af11f915aa64ddf0c (patch)
tree775caa408444d85fd2c6192436fcac4863c97a8d
parent7c4b2c1daa92c720db8b691fd9603c5306177425 (diff)
downloadpkgsrc-0a48810319c85bb7c595102af11f915aa64ddf0c.tar.gz
Fix a warning for egcs.
-rw-r--r--devel/mit-pthreads/patches/patch-ab11
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/mit-pthreads/patches/patch-ab b/devel/mit-pthreads/patches/patch-ab
new file mode 100644
index 00000000000..0c841897773
--- /dev/null
+++ b/devel/mit-pthreads/patches/patch-ab
@@ -0,0 +1,11 @@
+--- stdio/vfprintf.c-orig Wed Oct 18 11:57:52 1995
++++ stdio/vfprintf.c Sat Apr 18 18:20:10 1998
+@@ -730,7 +730,7 @@
+ } else
+ *sign = '\000';
+ /* #if !defined(__alpha__) && !defined(hpux) */
+-#ifndef 0
++#if !0
+ digits = __dtoa(value, mode, ndigits, decpt, &dsgn, &rve);
+ #else
+ { char *ecvt(double,int,int*,int*);