aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar Tom Willemse2023-07-12 15:08:31 -0700
committerGravatar Tom Willemse2023-07-12 15:08:31 -0700
commitb86754cb92cf0c43ed6a34831517e46b8c60f290 (patch)
tree33543ffb7e603b0f7d57abaaf2137879fe960975 /configure.ac
parent17e45127e137ff5c96596ae35b1913deb77f0d83 (diff)
downloadguile-inkplate-b86754cb92cf0c43ed6a34831517e46b8c60f290.tar.gz
guile-inkplate-b86754cb92cf0c43ed6a34831517e46b8c60f290.zip
Add ‘guile-termios’ dependency to set the speed of the inkplate TTY
There seems to be magic going on here. Once the speed has been set for the device once the OS (at least GNU/Linux) remembers the setting and it doesn't have to happen again after. Since I was porting from my Emacs module, I kept running Emacs and it kept setting the speed, which meant that my tests with Guile kept working. After a reboot, it stopped. This change makes sure that the speed is set. I'm not sure if the raw is necessary, but it's in the example, and it seems to work for now, so I'll keep it around.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e28d343..ee4e2a4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@ if test "x$GUILD" = "x"; then
fi
dnl Hall auto-generated guile-module dependencies
-
+GUILE_MODULE_REQUIRED([termios])
dnl Installation directories for .scm and .go files.
guilemoduledir="${datarootdir}/guile/site/$GUILE_EFFECTIVE_VERSION"