diff options
author | asami <asami@FreeBSD.org> | 1995-07-29 20:23:12 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-07-29 20:23:12 +0800 |
commit | 377a373a48a1a65c03de4c564c94426b69f76f3d (patch) | |
tree | ea3f2a501f491de425edd9a9804ad077494bdeb1 | |
parent | 0a61b5f376ec667bbfb78c3964ce18e277e4ff62 (diff) | |
download | freebsd-ports-gnome-377a373a48a1a65c03de4c564c94426b69f76f3d.tar.gz freebsd-ports-gnome-377a373a48a1a65c03de4c564c94426b69f76f3d.tar.zst freebsd-ports-gnome-377a373a48a1a65c03de4c564c94426b69f76f3d.zip |
(Hand-edited patch-aa, because Rob's patch was an addition of two
lines to an already existing hunk.)
Submitted by: Rob Snow <rsnow@legend.txdirect.net>
I was having a whale of a time getting hylafax to work with seyon.
faxgetty kept cycling DTR whenever I was trying to run seyon. I did a
little poking around and it looks like the LCK..cuaa1 file should have
the PID of the locking process. seyon didn't, it had some garbage in
the lock file. here is the patch to make seyon lock the port with the PID
in the lock file.
-rw-r--r-- | comms/seyon/files/patch-aa | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/comms/seyon/files/patch-aa b/comms/seyon/files/patch-aa index 9ddb21bb298f..673bcc7499f8 100644 --- a/comms/seyon/files/patch-aa +++ b/comms/seyon/files/patch-aa @@ -101,7 +101,7 @@ diff -c ./config.h ../seyon.new/config.h --- ../seyon.new/config.h Fri Feb 3 07:37:50 1995 *************** *** 81,86 **** ---- 81,92 ---- +--- 81,94 ---- #define HAVE_USLEEP YES #endif @@ -109,6 +109,8 @@ diff -c ./config.h ../seyon.new/config.h + #define USE_NONSTD_BAUD YES + #define LF_PATH "/var/spool/lock" + #define LF_PREFIX "LCK.." ++ #define LF_USE_ASCII_PID YES ++ #define LF_USE_DEV_NUMBERS NO + #endif + #ifdef SVR4 |