diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1998-11-23 10:44:26 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1998-11-23 10:44:26 +0000 |
commit | ac60b0161d7f4c26f3afcd99fe10177b8eebee8f (patch) | |
tree | c91ba712981b4e7efaf82b1495e1cb0133f042a0 /Configure | |
parent | 0ee42efb380b09e5d4ab4a26bb9f7807581a8ee4 (diff) | |
download | perl-ac60b0161d7f4c26f3afcd99fe10177b8eebee8f.tar.gz |
The new socket tests need in some platforms
to #include <sys/types.h>.
p4raw-id: //depot/cfgperl@2294
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -6847,6 +6847,7 @@ echo "Checking the availability of certain socket constants..." >& 4 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'` $cat >try.c <<EOF +#include <sys/types.h> #include <sys/socket.h> int main() { int i = $ENUM; |