components/clisp/patches/stream.d.patch
author Bill Rushmore <bill.rushmore@oracle.com>
Fri, 15 Aug 2014 15:13:12 -0700
branchs11u2-sru
changeset 3273 73f7b1db598e
parent 2398 54c1297f2b4b
permissions -rw-r--r--
19365059 perl-pmtools package needs cleanup 19364210 Perl authen::pam packages need updates
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2398
54c1297f2b4b 7161369 Update clisp to version 2.49
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     1
--- src/stream.d.orig	2012-09-05 05:50:05.863643076 -0700
54c1297f2b4b 7161369 Update clisp to version 2.49
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     2
+++ src/stream.d	2012-09-05 07:32:38.494710125 -0700
54c1297f2b4b 7161369 Update clisp to version 2.49
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     3
@@ -3483,6 +3483,8 @@
54c1297f2b4b 7161369 Update clisp to version 2.49
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     4
   #define IS_EINVAL_EXTRA  ((errno==EBADF)||(errno==EACCES)||(errno==EBADRQC))
54c1297f2b4b 7161369 Update clisp to version 2.49
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     5
 #elif defined(UNIX_DARWIN) || defined(UNIX_FREEBSD) || defined(UNIX_NETBSD) || defined(UNIX_OPENBSD)
54c1297f2b4b 7161369 Update clisp to version 2.49
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     6
   #define IS_EINVAL_EXTRA  ((errno==EOPNOTSUPP)||(errno==ENOTSUP)||(errno==ENODEV))
54c1297f2b4b 7161369 Update clisp to version 2.49
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     7
+#elif defined(UNIX_SUNOS5)
54c1297f2b4b 7161369 Update clisp to version 2.49
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     8
+  #define IS_EINVAL_EXTRA  ((errno==ENXIO))
54c1297f2b4b 7161369 Update clisp to version 2.49
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     9
 #else
54c1297f2b4b 7161369 Update clisp to version 2.49
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    10
   #define IS_EINVAL_EXTRA  0
54c1297f2b4b 7161369 Update clisp to version 2.49
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    11
 #endif