32 lines
843 B
Diff
32 lines
843 B
Diff
From c7bb06877773f0a0c3b1192c68e726b7f61191f3 Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Yong <10walls@gmail.com>
|
|
Date: Sat, 28 Jun 2014 10:05:50 +0800
|
|
Subject: [PATCH 15/21] define RTS_CONTROL_ENABLE and DTR_CONTROL_ENABLE for
|
|
Cygwin
|
|
|
|
Conflicts:
|
|
gcc/ada/s-oscons-tmplt.c
|
|
---
|
|
gcc/ada/s-oscons-tmplt.c | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/gcc/ada/s-oscons-tmplt.c b/gcc/ada/s-oscons-tmplt.c
|
|
index 56da9f8..de6d3cd 100644
|
|
--- a/gcc/ada/s-oscons-tmplt.c
|
|
+++ b/gcc/ada/s-oscons-tmplt.c
|
|
@@ -1001,6 +1001,11 @@ CND(VEOL2, "Alternative EOL")
|
|
|
|
#endif /* HAVE_TERMIOS */
|
|
|
|
+#if defined(__CYGWIN__)
|
|
+#define RTS_CONTROL_ENABLE 0x1
|
|
+#define DTR_CONTROL_ENABLE 0x1
|
|
+#endif
|
|
+
|
|
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
|
CNU(DTR_CONTROL_ENABLE, "Enable DTR flow ctrl")
|
|
CNU(RTS_CONTROL_ENABLE, "Enable RTS flow ctrl")
|
|
--
|
|
2.4.5
|
|
|