Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'how i got it compile at last...' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
how i got it compile at last...
Authored by: see on Mar 08, '02 12:43:00PM

do the steps on the stepwisetutorial except before trying to compile ssh do this:

on bottom of file openbsd-compat/readpassphrase.c change:
--------------------------
static void handler(int s)
{

signo = s;
}

to:
static void handler(int s)
{

int signo = s;
}
---------------------------------
also add in file readpass.h the folowing lines:

#define RPP_ECHO_OFF 0x00 /* Turn off echo (default). */
#define RPP_ECHO_ON 0x01 /* Leave echo on. */
#define RPP_REQUIRE_TTY 0x02 /* Fail if there is no tty. */

now continue with the last step in stepwise compilation, ege compile ssh
this worked for me and i hope it helps someone else...dont blame me if you *censored* something up ;)



[ Reply to This | # ]