From ce936edf62484bf46205eac48cdfb9b7b28a64b9 Mon Sep 17 00:00:00 2001
From: Paul Sokolovsky <pfalcon@users.sourceforge.net>
Date: Wed, 9 Dec 2015 21:49:09 +0200
Subject: [PATCH] unix/modtermios: Provide B57600 and B115200 constants only if
 defined.

---
 unix/modtermios.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/unix/modtermios.c b/unix/modtermios.c
index a70edf5bf..94074e1d0 100644
--- a/unix/modtermios.c
+++ b/unix/modtermios.c
@@ -136,8 +136,12 @@ STATIC const mp_rom_map_elem_t mp_module_termios_globals_table[] = {
     C(TCSANOW),
 
     C(B9600),
+    #ifdef B57600
     C(B57600),
+    #endif
+    #ifdef B115200
     C(B115200),
+    #endif
 #undef C
 };
 
-- 
GitLab