Displaying 3 results from an estimated 3 matches for "have_vis".
Did you mean:
have_vivi
2001 Feb 08
1
openbsd-compat/vis.c fails to build (patch)
...n the openssh root to fix:
--- openbsd-compat/vis.c.old Thu Feb 8 09:21:18 2001
+++ openbsd-compat/vis.c Thu Feb 8 09:21:26 2001
@@ -35,9 +35,9 @@
static char rcsid[] = "$OpenBSD: vis.c,v 1.5 2000/07/19 15:25:13 deraadt Exp $";
#endif /* LIBC_SCCS and not lint */
-#ifndef HAVE_VIS
-
#include "includes.h"
+
+#ifndef HAVE_VIS
#define isoctal(c)
2001 Mar 23
1
-I$(srcdir)/openbsd-compat removal can cause errors
...was removed from the definition of CPPFLAGS in openssh-2.5.2p2, the
/usr/local/include/vis.h gets found instead of ./openbsd-compat/vis.h.
I'd recommend putting it back the way it was. (There may even be other
breakage I never noticed before, because configure detects vis.h but not
vis(), so HAVE_VIS_H is defined but not HAVE_VIS. What uses vis()?)
Dr. Tom Holroyd
"I am, as I said, inspired by the biological phenomena in which
chemical forces are used in repetitious fashion to produce all
kinds of weird effects (one of which is the author)."
-- Richard Feynman, _There's Plenty...
2001 Feb 16
1
OpenSSH 2.3.0p1 port to BSDI BSD/OS
...= 1)
#endif /* USE_PAM */
authenticated = 1;
Index: bsd-vis.c
--- bsd-vis.c 2001/02/13 07:43:16 1.1
+++ bsd-vis.c 2001/02/13 07:45:46 1.2
@@ -35,9 +35,9 @@
static char rcsid[] = "$OpenBSD: vis.c,v 1.5 2000/07/19 15:25:13 deraadt Exp $";
#endif /* LIBC_SCCS and not lint */
-#ifndef HAVE_VIS
-
#include "includes.h"
+
+#ifndef HAVE_VIS
#define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')
Index: session.c
--- session.c 2001/02/13 07:43:17 1.1
+++ session.c 2001/02/13 07:45:46 1.2
@@ -1155,7 +1155,9 @@
child_set_env(&env, &...