diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-14 15:07:48 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-14 15:07:48 +0000 |
commit | bf9b2f8f129695d329aed9658a2b6dae62c5f454 (patch) | |
tree | 0aeac3c5d3a99ac2368cb57cc48c6a72e741ea67 /ext | |
parent | 8c29f92dbf674a550edc59b114a3c9b733caa2a1 (diff) | |
download | perl-bf9b2f8f129695d329aed9658a2b6dae62c5f454.tar.gz |
Fix for one of the problems in RC1 reported by M. E. O'Neill
in NEXTSTEP 3.3p2.
p4raw-id: //depot/cfgperl@5728
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Socket/Socket.xs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/Socket/Socket.xs b/ext/Socket/Socket.xs index 752c3ddb10..0584e785b5 100644 --- a/ext/Socket/Socket.xs +++ b/ext/Socket/Socket.xs @@ -19,6 +19,10 @@ # ifdef I_SYS_UN # include <sys/un.h> # endif +/* XXX Configure test for <netinet/in_systm.h needed XXX */ +# if defined(NeXT) || defined(__NeXT__) +# include <netinet/in_systm.h> +# endif # ifdef I_NETINET_IN # include <netinet/in.h> # endif |