Displaying 5 results from an estimated 5 matches for "test_minus_s_sh".
2001 Feb 12
2
patches for UnixWare v2.x pty (misc.c,configure.in)
...ems with UnixWare 2.x with connecting with
SSH2. It sets the sigaction to SA_RESTART. This fixes UnixWare v2.x,
but haven't heard any feedback as to effects on other OS'.
The first patch is against misc.c.
The second patch adds a section "*-*-sysv4.2uw2*" to configure to
set the TEST_MINUS_S_SH shell and define USE_PIPES.
I suspect these same fixes apply to UnixWare 7.x, but I don't have
access to that build platform, or I would include them in the config
as well.
Let me know whether these can be applied against the current source
tree.
Thank you,
-Tom Rudnick
----------------/---...
2019 May 04
4
[PATCH] configure.ac: Add mandoc as valid formatter
Hi,
On systems that have mandoc installed but are missing an nroff binary,
the configure script will fall back to pre-formatted manual pages
despite the fact that mandoc could be used.
The proposed patch adds mandoc as a valid formatter to configure.ac. As
mandoc supports the -mdoc flag, it can simply be added to the list of
nroff-like binaries.
Wolfgang
-------------- next part --------------
2001 Feb 28
2
small patch for configure.in
...t -z "$RANDOM_POOL" ; then
AC_MSG_CHECKING(for PRNGD/EGD socket)
# Insert other locations here
- for egdsock in /var/run/egd-pool /etc/entropy /tmp/entropy ; do
+ for egdsock in /var/run/egd-pool /tmp/egd-pool /etc/entropy /tmp/entropy ; do
if test -r $egdsock && $TEST_MINUS_S_SH -c "test -S $egdsock -o -p $egdsock" ; then
EGD_SOCKET="$egdsock"
AC_DEFINE_UNQUOTED(EGD_SOCKET, "$EGD_SOCKET")
break;
fi
done
- if test -x "$EGD_SOCKET" ; then
+ if test -n "$EGD_SOCKET" ; then
AC_MSG_RESULT($EGD...
2002 Jul 01
3
patch: readline support for sftp
...$(LD) -o $@ ssh-rand-helper.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
diff -Nru openssh-3.4p1/configure.ac openssh-3.4p1.readline/configure.ac
--- openssh-3.4p1/configure.ac Wed Jun 26 00:35:16 2002
+++ openssh-3.4p1.readline/configure.ac Mon Jul 1 04:13:58 2002
@@ -23,6 +23,8 @@
AC_PATH_PROG(TEST_MINUS_S_SH, sh)
AC_PATH_PROG(SH, sh)
+SFTPLIB=""
+
# System features
AC_SYS_LARGEFILE
@@ -477,6 +479,51 @@
]
)
+# Check for readline support
+READLINE="no"
+AC_ARG_WITH(readline,
+ [ --with-readline Enable redline support],
+ [
+ if test "x$withval" == "...
2006 Apr 11
0
Problem building openssh-4.3p2 under cygwin and windows XP
...p
ac_cv_path_PROG_DF=/bin/df
ac_cv_path_PROG_IPCS=/bin/ipcs
ac_cv_path_PROG_LS=/bin/ls
ac_cv_path_PROG_NETSTAT=/cygdrive/c/WINDOWS/system32/netstat
ac_cv_path_PROG_PS=/bin/ps
ac_cv_path_PROG_TAIL=/bin/tail
ac_cv_path_PROG_WHO=/bin/who
ac_cv_path_SED=/usr/bin/sed
ac_cv_path_SH=/usr/bin/sh
ac_cv_path_TEST_MINUS_S_SH=/usr/bin/bash
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_MAKE_PACKAGE_SUPPORTED=no
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_egrep='grep -E'
ac_cv_search_base...