From 45ac4a7141f76a59b6b8d2af37505b05b6db3f83 Mon Sep 17 00:00:00 2001 From: foobar Date: Mon, 1 Dec 2003 16:36:00 +0000 Subject: [PATCH] - Fixed bug #26488 (Missing declaration of CRTSCTS in ext/dio/dio.c) --- ext/dio/dio.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ext/dio/dio.c b/ext/dio/dio.c index 444400e371..62adc5ae32 100644 --- a/ext/dio/dio.c +++ b/ext/dio/dio.c @@ -31,6 +31,15 @@ #include #include +/* e.g. IRIX does not have CRTSCTS */ +#ifndef CRTSCTS +# ifdef CNEW_RTSCTS +# define CRTSCTS CNEW_RTSCTS +# else +# define CRTSCTS 0 +# endif /* CNEW_RTSCTS */ +#endif /* !CRTSCTS */ + #define le_fd_name "Direct I/O File Descriptor" static int le_fd; -- 2.50.1