Displaying 1 result from an estimated 1 matches for "5949c5949".
2003 Jan 13
0
SX-6 port of openssh, configure problems
...we faced linking problem as b64_pton()
multiply defined, in base64.c and in libc.a. So we modified configure to
check both the functions b64_pton() and b64_ntop(). But we gave priority to
native function if available. Following are the diffs of three files we
changed
1. configure (line modified)
5949c5949
< for ac_func in arc4random atexit b64_ntop bcopy bindresvport_sa \
---
> for ac_func in arc4random atexit b64_ntop b64_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...