From: Richard M. Stallman Date: Sun, 4 Sep 1994 02:09:55 +0000 (+0000) Subject: (init_baud_rate): Test that getobaud is actually defined. X-Git-Tag: emacs-19.34~7158 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5baff9cebfc2787f3c7dd2912371eccb987a8771;p=emacs.git (init_baud_rate): Test that getobaud is actually defined. --- diff --git a/src/sysdep.c b/src/sysdep.c index 23920d88b64..5b179453deb 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -279,7 +279,7 @@ init_baud_rate () sg.c_cflag = B9600; tcgetattr (input_fd, &sg); ospeed = cfgetospeed (&sg); -#ifdef USE_GETOBAUD +#if defined (USE_GETOBAUD) && defined (getobaud) /* m88k-motorola-sysv3 needs this (ghazi@noc.rutgers.edu) 9/1/94. */ if (ospeed == 0) ospeed = getobaud (sg.c_cflag);