Displaying 3 results from an estimated 3 matches for "have___b64_ntop".
2003 Jan 13
0
SX-6 port of openssh, configure problems
...pton bcopy bindresvport_sa \
2. config.h.in (Following lines added)
337a337,339
>
> /* Define if you have the `b64_pton' function. */
> #undef HAVE_B64_PTON
3. openbsd-compat/base64.c (Used the HAVE_B64_PTON in this file)
47c47
< #if !defined(HAVE_B64_NTOP) && !defined(HAVE___B64_NTOP)
---
> #if (!defined(HAVE_B64_NTOP) && !defined(HAVE___B64_NTOP)) ||
!defined(HAVE_B64_PTON)
131a132
> #if !defined(HAVE_B64_NTOP) && !defined(HAVE___B64_NTOP)
197a199
> #endif /* !defined(HAVE_B64_NTOP) && !defined(HAVE___B64_NTOP) */
198a201
> #if !defined(HAVE...
2000 Dec 27
2
implicit declaration warnings
....c:1282: warning: implicit declaration of function `login'
loginrec.c: In function `syslogin_perform_logout':
loginrec.c:1295: warning: implicit declaration of function `logout'
loginrec.c:1299: warning: implicit declaration of function `logwtmp'
---
In config.h, there are:
#define HAVE___B64_NTOP 1
#define HAVE_LIBUTIL_LOGIN 1
#define HAVE_INNETGR 1
Attached patch removes the warnings about login functions BUT will break
on systems that define LIBUTIL_LOGIN but don't have libutil.h (e.g.
Linux). So, it's not the way to go. But some sort of "nice" way of
handling the nec...
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...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-unix-dev at mindrot.org"
#define PACKAGE_NAME "OpenSSH"
#define PACKAGE_STRING "OpenSSH Portable"
#define PACKAGE_TARNAME "op...