summaryrefslogtreecommitdiff
path: root/configure.com
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2013-11-05 07:12:34 -0600
committerCraig A. Berry <craigberry@mac.com>2013-11-05 07:12:34 -0600
commit53eda0bff2fe09151fa42625b5e16ba2307a8b9b (patch)
tree7c702099d8774af6867f6218f11e37887be7d168 /configure.com
parent39aec2a9c2ab7d99ee3fb3edb075c01cb1c0c097 (diff)
downloadperl-53eda0bff2fe09151fa42625b5e16ba2307a8b9b.tar.gz
i_arpainet and i_sysun for configure.com.
VMS does have arpa/inet.h and is supposed to be getting sys/un.h in the near future.
Diffstat (limited to 'configure.com')
-rw-r--r--configure.com27
1 files changed, 25 insertions, 2 deletions
diff --git a/configure.com b/configure.com
index d5c8e6f01b..c9afdc7fc8 100644
--- a/configure.com
+++ b/configure.com
@@ -4569,6 +4569,29 @@ $ ELSE
$ i_niin="undef"
$ ENDIF
$!
+$! Check for <arpa/inet.h>
+$!
+$ IF Has_Dec_C_Sockets
+$ THEN
+$ tmp = "arpa/inet.h"
+$ GOSUB inhdr
+$ i_arpainet = tmp
+$ ELSE
+$ i_arpainet="undef"
+$ ENDIF
+$!
+$! Check for <sys/un.h>
+$!
+$ IF Has_Dec_C_Sockets
+$ THEN
+$ tmp = "sys/un.h"
+$ GOSUB inhdr
+$ i_sysun = tmp
+$ ELSE
+$ i_sysun="undef"
+$ ENDIF
+$!
+$!
$! Check for <netinet/tcp.h>
$!
$ IF Has_Dec_C_Sockets
@@ -6418,7 +6441,7 @@ $ WC "i64size='" + i64size + "'"
$ WC "i64type='" + i64type + "'"
$ WC "i8size='" + i8size + "'"
$ WC "i8type='" + i8type + "'"
-$ WC "i_arpainet='undef'"
+$ WC "i_arpainet='" + i_arpainet + "'"
$ WC "i_assert='define'"
$ WC "i_bsdioctl='undef'"
$ WC "i_crypt='undef'"
@@ -6497,7 +6520,7 @@ $ WC "i_systimek='undef'"
$ WC "i_systimes='undef'"
$ WC "i_systypes='define'"
$ WC "i_sysuio='" + i_sysuio + "'"
-$ WC "i_sysun='undef'"
+$ WC "i_sysun='" + i_sysun + "'"
$ WC "i_sysutsname='" + i_sysutsname + "'"
$ WC "i_sysvfs='undef'"
$ WC "i_syswait='undef'"