For tied file handle calls, use PUSH* when we know that the stack has space.
[p5sagit/p5-mst-13.2.git] / hints / cygwin.sh
index c5c12e0..b77ca85 100644 (file)
@@ -36,22 +36,35 @@ test -z "$use64bitint" && use64bitint='define'
 test -z "$usethreads" && usethreads='define'
 test -z "$usemymalloc" && usemymalloc='define'
 ccflags="$ccflags -DPERL_USE_SAFE_PUTENV -U__STRICT_ANSI__"
+# - otherwise i686-cygwin
+archname='cygwin'
 
 # dynamic loading
 # - otherwise -fpic
 cccdlflags=' '
 lddlflags=' --shared'
-ld='g++'
+test -z "$ld" && ld='g++'
 
 case "$osvers" in
-
-# Configure gets these wrong if the IPC server isn't yet running:
-# only use for 1.5.7 and onwards
-[2-9]*|1.[6-9]*|1.[1-5][0-9]*|1.5.[7-9]*|1.5.[1-6][0-9]*)
+    # Configure gets these wrong if the IPC server isn't yet running:
+    # only use for 1.5.7 and onwards
+    [2-9]*|1.[6-9]*|1.[1-5][0-9]*|1.5.[7-9]*|1.5.[1-6][0-9]*)
         d_semctl_semid_ds='define'
         d_semctl_semun='define'
         ;;
-esac;
+esac
+
+case "$osvers" in
+    [2-9]*|1.[6-9]*)
+        # IPv6 only since 1.7
+        d_inetntop='define'
+        d_inetpton='define'
+        ;;
+    *)
+        # IPv6 not implemented before cygwin-1.7
+        d_inetntop='undef'
+        d_inetpton='undef'
+esac
 
 # compile Win32CORE "module" as static. try to avoid the space.
 if test -z "$static_ext"; then