Update dropbear SSH server to 0.37 How-To-Repeat: N/A.
State Changed From-To: open->feedback Please fix it on -stable: In file included from main.c:25: includes.h:124: conflicting types for `socklen_t' /usr/include/sys/socket.h:54: previous declaration of `socklen_t' main.c: In function `sigchld_handler': main.c:244: warning: unused parameter `fish' main.c: In function `sigsegv_handler': main.c:257: warning: unused parameter `fish' main.c: In function `sigintterm_handler': main.c:264: warning: unused parameter `fish' gmake: *** [main.o] Error 1 *** Error code 2
Fix on -STABLE. In all case, remove typedef int socklen_t since configure failed to detect it under -STABLE. Pointed out by: krion. --- Makefile.orig Thu Sep 25 11:57:07 2003 +++ Makefile Thu Sep 25 11:52:22 2003 @@ -26,6 +26,7 @@ post-configure: @${REINPLACE_CMD} -e "s,/etc/,${PREFIX}/etc/,g" ${WRKSRC}/options.h @${REINPLACE_CMD} -e "s,/usr/bin/X11/,${X11BASE}/,g" ${WRKSRC}/options.h + @${REINPLACE_CMD} -e "s,^typedef int socklen_t,//typedef int socklen_t," ${WRKSRC}/includes.h do-install: .for bin in ${BIN}
State Changed From-To: feedback->closed Committed, thanks!