diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-11-07 19:17:44 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-11-07 20:16:20 -0800 |
commit | 426049c30162ed620cc16bb58edef6aac4e2ee5d (patch) | |
tree | f67dbceea0babe66cd78bab525de9992d2294a6e | |
parent | 76b4f4430f9a857a1b54bfde9ef57a95b87789f5 (diff) |
Allow XTRANS_SEND_FDS on Solaris as well
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | Xtransint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Xtransint.h b/Xtransint.h index 8dee614..1f32f0c 100644 --- a/Xtransint.h +++ b/Xtransint.h @@ -72,8 +72,8 @@ from The Open Group. # define XTRANSDEBUG 1 #endif -#if XTRANS_SEND_FDS && !defined(linux) -#error "FD passing support only on Linux" +#if XTRANS_SEND_FDS && !(defined(linux) || defined(__sun)) +#error "FD passing support only on Linux & Solaris" #endif #ifdef WIN32 |