components/clisp/patches/stream.d.patch
author Rich Burridge <rich.burridge@oracle.com>
Fri, 08 Aug 2014 17:15:28 -0700
branchs11u2-sru
changeset 3255 0de94448806f
parent 2398 54c1297f2b4b
permissions -rw-r--r--
19078551 libneon version 0.29.6 needs a TPNO at the appropriate juncture 19078682 unrar version 4.2.4 needs a TPNO in due course
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