summaryrefslogtreecommitdiff
path: root/README_d/README.solaris
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:49:45 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:49:45 +0300
commit6607eb3d5e40b98d2acc8f6b0d6a0b5a4b0f56bd (patch)
treec1eb39be8cc5c19101385e171ec0c58f95d521cc /README_d/README.solaris
parent6719bb6e1c5576e857ab6fc121ec31a75161a3e7 (diff)
downloadgawk-6607eb3d5e40b98d2acc8f6b0d6a0b5a4b0f56bd.tar.gz
Move to gawk-3.0.3.gawk-3.0.3
Diffstat (limited to 'README_d/README.solaris')
-rw-r--r--README_d/README.solaris37
1 files changed, 37 insertions, 0 deletions
diff --git a/README_d/README.solaris b/README_d/README.solaris
new file mode 100644
index 00000000..e83d57e5
--- /dev/null
+++ b/README_d/README.solaris
@@ -0,0 +1,37 @@
+From dragon!lehman.com!carson Fri Feb 7 01:12:09 1997
+Return-Path: <dragon!lehman.com!carson>
+From: carson@lehman.com
+Date: Fri, 7 Feb 1997 01:05:58 -0500
+Message-ID: <199702070605.BAA09185@dragon.lehman.com>
+To: arnold@gnu.ai.mit.edu
+Subject: Solaris 2.5.1 x86 bug in gawk-3.0.2
+Reply-To: carson@lehman.com
+Status: R
+Content-Length: 630
+X-Lines: 23
+X-Display-Position: 0
+
+
+awktab.c has the following bogus logic:
+
+#ifndef alloca
+#ifdef __GNUC__
+#define alloca __builtin_alloca
+#else /* not GNU C. */
+#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
+#include <alloca.h>
+#else /* not sparc */
+
+Solaris x86 obviously dosn't define sparc or __sparc.
+
+What you _meant_ to say was:
+
+if (defined(__sun) && defined(__SVR4))
+
+(which identifies Solaris 2.x under both Sun's cc and gcc)
+
+--
+Carson Gaspar -- carson@cs.columbia.edu carson@lehman.com
+http://www.cs.columbia.edu/~carson/home.html
+<This is the boring business .sig - no outre sayings here>
+