summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1998-11-23 10:44:26 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1998-11-23 10:44:26 +0000
commitac60b0161d7f4c26f3afcd99fe10177b8eebee8f (patch)
treec91ba712981b4e7efaf82b1495e1cb0133f042a0 /Configure
parent0ee42efb380b09e5d4ab4a26bb9f7807581a8ee4 (diff)
downloadperl-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-xConfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/Configure b/Configure
index 10b5331bac..3f3d24b8ef 100755
--- a/Configure
+++ b/Configure
@@ -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;