freebsd-ports/lang/squeak/files/patch-unix_plugins_ScratchPlugin_unixSeriaPort2Ops.c
Fernando Apesteguía e08da5800e lang/squeak: Fix build in 14.0-current
The lang/squeak ports assume B576000 and B1152000.
Lack of B576000 and B1152000 at /usr/include/sys/_termios.h, lang/squeak is
broken at 14.0-Current.

While here, add missing USES, dependencies, reorder variables, etc.

PR:	254456
Submitted by:	takeshi.mutoh@gmail.com (maintainer)
2021-03-26 19:40:36 +00:00

11 lines
301 B
C

--- unix/plugins/ScratchPlugin/unixSeriaPort2Ops.c.orig 2012-07-30 21:58:07 UTC
+++ unix/plugins/ScratchPlugin/unixSeriaPort2Ops.c
@@ -337,7 +337,7 @@ error:
}
int isSerialPortDev(char *s) {
- return isPrefix("ttyusb", s);
+ return isPrefix("ttyU", s);
}
int isPrefix(char *prefix, char *s) {