pinkbyte 14/04/09 10:19:59 Added: p3nfs-5.19-set-default-tty.patch Log: Fix building on systems without serial interfaces, wrt bug #314971, fix minor QA issues (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Revision Changes Path 1.1 app-pda/p3nfs/files/p3nfs-5.19-set-default-tty.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/p3nfs/files/p3nfs-5.19-set-default-tty.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/p3nfs/files/p3nfs-5.19-set-default-tty.patch?rev=1.1&content-type=text/plain Index: p3nfs-5.19-set-default-tty.patch =================================================================== --- configure.in.orig 2014-04-09 14:05:32.579648000 +0400 +++ configure.in 2014-04-09 14:10:05.162648000 +0400 @@ -81,7 +81,10 @@ break fi done -test -z "$DDEV" && AC_MSG_ERROR(serial device not found... Try harder.) +if test -z "$DDEV"; then + DDEV="/dev/ttyS0" + AC_MSG_RESULT(serial device not found... Setting default one to $DDEV) +fi AC_SUBST(DDEV) dnl Looking for Symbian SDKs:
