Skip to content
Snippets Groups Projects
Commit 77714e62 authored by Fons Rademakers's avatar Fons Rademakers
Browse files

fix for Solaris 11.11.11.

git-svn-id: http://root.cern.ch/svn/root/trunk@42119 27541ba8-7e3a-0410-8455-c3a389f83636
parent ff1cc7cd
No related branches found
No related tags found
No related merge requests found
......@@ -61,12 +61,11 @@
#if defined(__MACH__) && defined(__i386__)
# define R__GLIBC
#endif
#if defined(_AIX) || \
(defined(XR__SUNGCC3) && !defined(__arch64__))
#if defined(_AIX) || (defined(XR__SUNGCC3) && !defined(__arch64__))
# define SOCKLEN_t size_t
#elif defined(XR__GLIBC) || \
defined(__FreeBSD__) || \
(defined(XR__SUNGCC3) && defined(__arch64__)) || defined(__APPLE__)
#elif defined(XR__GLIBC) || defined(__FreeBSD__) || \
(defined(XR__SUNGCC3) && defined(__arch64__)) || defined(__APPLE__) || \
(defined(__sun) && defined(_SOCKLEN_T))
# ifndef SOCKLEN_t
# define SOCKLEN_t socklen_t
# endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment