search for: have_vis_h

Displaying 5 results from an estimated 5 matches for "have_vis_h".

Did you mean: have_list_h
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 of...
2018 Nov 19
2
[PATCH] openssl-compat: Test for OpenSSL_add_all_algorithms before using.
OpenSSL 1.1.0 has deprecated this function. --- configure.ac | 1 + openbsd-compat/openssl-compat.c | 2 ++ openbsd-compat/openssl-compat.h | 4 ++++ 3 files changed, 7 insertions(+) diff --git a/configure.ac b/configure.ac index 3f7fe2cd..db2aade8 100644 --- a/configure.ac +++ b/configure.ac @@ -2710,6 +2710,7 @@ if test "x$openssl" = "xyes" ; then ])
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...H 1 #define HAVE_UNSETENV 1 #define HAVE_UPDWTMP 1 #define HAVE_UPDWTMPX 1 /* #undef HAVE_USERSEC_H */ /* #undef HAVE_UTIL_H */ #define HAVE_UTIMES 1 #define HAVE_UTIME_H 1 #define HAVE_UTMPNAME 1 #define HAVE_UTMPXNAME 1 #define HAVE_UTMPX_H 1 #define HAVE_UTMP_H 1 #define HAVE_VHANGUP 1 /* #undef HAVE_VIS_H */ #define HAVE_VSNPRINTF 1 #define HAVE_WAITPID 1 #define HAVE__GETLONG 1 /* #undef HAVE__GETPTY */ #define HAVE__GETSHORT 1 /* #undef HAVE___B64_NTOP */ /* #undef HAVE___B64_PTON */ /* #undef LLONG_MAX */ /* #undef LLONG_MIN */ /* #undef NEED_SETPRGP */ #define PACKAGE_BUGREPORT "openssh-uni...
2000 Dec 07
1
[PATCH] tis authserv support
...n Thu Dec 7 18:38:42 2000 @@ -269,6 +269,8 @@ /* Detect IPv4 in IPv6 mapped addresses and treat as IPv4 */ #undef IPV4_IN_IPV6 +#undef TIS_AUTH + /* The number of bytes in a char. */ #undef SIZEOF_CHAR @@ -601,6 +603,9 @@ /* Define if you have the <vis.h> header file. */ #undef HAVE_VIS_H + +/* Define if you have the crypt library (-lcrypt). */ +#undef HAVE_LIBCRYPT /* Define if you have the dl library (-ldl). */ #undef HAVE_LIBDL diff -urN openssh-2.3.0p1/configure.in openssh-2.3.0p1-tis/configure.in --- openssh-2.3.0p1/configure.in Sun Nov 5 10:08:45 2000 +++ openssh-2.3.0p...
2015 Mar 03
2
openssh-SNAP-20150304 issues
...;fcntl.h> #include <stdio.h> #ifdef HAVE_STDINT_H # include <stdint.h> #endif #include <stdlib.h> #include <string.h> #include <assert.h> #include <unistd.h> #include <signal.h> #include <openssl/bn.h> #if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS) # include <vis.h> #endif #include "test_helper.h" #include "atomicio.h" #define TEST_CHECK_INT(r, pred) do { \ switch (pred) { \ case TEST_EQ: \...