]> andersk Git - openssh.git/commitdiff
- (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4
authordjm <djm>
Tue, 22 Aug 2000 23:10:39 +0000 (23:10 +0000)
committerdjm <djm>
Tue, 22 Aug 2000 23:10:39 +0000 (23:10 +0000)
   Avoids "scp never exits" problem. Reports from Lutz Jaenicke
   <Lutz.Jaenicke@aet.TU-Cottbus.DE> and Tamito KAJIYAMA
   <kajiyama@grad.sccs.chukyo-u.ac.jp>

ChangeLog
acconfig.h
configure.in

index ae8ae56e14c58f4aa9160484d2dd4bf12c1e3f93..4463cf2bbb1272efcbb81244d9d651ea7756c187 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+20000823
+ - (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4
+   Avoids "scp never exits" problem. Reports from Lutz Jaenicke 
+   <Lutz.Jaenicke@aet.TU-Cottbus.DE> and Tamito KAJIYAMA 
+   <kajiyama@grad.sccs.chukyo-u.ac.jp>
+
 20000818
  - (djm) OpenBSD CVS changes:
    - markus@cvs.openbsd.org  2000/07/22 03:14:37
index 86607710f59d35acdee5b6bf39a3ce2aa382d09d..601dc16f75e0981affe93fa52f6536a075d84e3c 100644 (file)
@@ -6,6 +6,9 @@
 
 @TOP@
 
+/* Define if your socketpair() has bugs */
+#undef USE_PIPES
+
 /* Define if your system's struct sockaddr_un has a sun_len member */
 #undef HAVE_SUN_LEN_IN_SOCKADDR_UN
 
index e9467011bdc5172e5fd4099fcb5b5f5e80246452..f048b000d8dc4c764d3d3f22703cedbef73f8359 100644 (file)
@@ -49,6 +49,7 @@ case "$host" in
        fi
        CFLAGS="$CFLAGS -D_HPUX_SOURCE"
        AC_DEFINE(IPADDR_IN_DISPLAY)
+       AC_DEFINE(USE_PIPES)
        AC_MSG_CHECKING(for HPUX trusted system password database)
        if test -f /tcb/files/auth/system/default; then
                AC_MSG_RESULT(yes)
@@ -142,6 +143,7 @@ case "$host" in
        conf_utmp_location=/etc/utmp
        conf_wtmp_location=/var/adm/wtmp
        conf_lastlog_location=/var/adm/lastlog
+       AC_DEFINE(USE_PIPES)
        MANTYPE='$(CATMAN)'
        mansubdir=cat
        ;;
This page took 0.051771 seconds and 5 git commands to generate.