diff options
author | Joshua Kinard <kumba@gentoo.org> | 2004-01-16 10:50:38 +0000 |
---|---|---|
committer | Joshua Kinard <kumba@gentoo.org> | 2004-01-16 10:50:38 +0000 |
commit | 1879ee13c90b7d9ae225e916323d5546b2070d52 (patch) | |
tree | 135f7ec9ac9726ae4f499e68d79517c787cab8de /net-dialup/xc/files | |
parent | cleanup (diff) | |
download | historical-1879ee13c90b7d9ae225e916323d5546b2070d52.tar.gz historical-1879ee13c90b7d9ae225e916323d5546b2070d52.tar.bz2 historical-1879ee13c90b7d9ae225e916323d5546b2070d52.zip |
Added a small patch which allows xc to use 115200 baud speed for serial port connections. Also tweaked the Makefile to import CFLAGS from the portage environment.
Diffstat (limited to 'net-dialup/xc/files')
-rw-r--r-- | net-dialup/xc/files/digest-xc-4.3.2-r1 | 1 | ||||
-rw-r--r-- | net-dialup/xc/files/xc-4.3.2-add-115200.patch | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/net-dialup/xc/files/digest-xc-4.3.2-r1 b/net-dialup/xc/files/digest-xc-4.3.2-r1 new file mode 100644 index 000000000000..7c1adf670497 --- /dev/null +++ b/net-dialup/xc/files/digest-xc-4.3.2-r1 @@ -0,0 +1 @@ +MD5 e7bb2de7177a4ef9a4eccf3fd3d67c05 xc-4.3.2.tar.gz 162098 diff --git a/net-dialup/xc/files/xc-4.3.2-add-115200.patch b/net-dialup/xc/files/xc-4.3.2-add-115200.patch new file mode 100644 index 000000000000..3d879ce1bc7b --- /dev/null +++ b/net-dialup/xc/files/xc-4.3.2-add-115200.patch @@ -0,0 +1,10 @@ +--- xcport.c.orig 2004-01-16 05:11:34.131877776 -0500 ++++ xcport.c 2004-01-16 05:13:52.459848728 -0500 +@@ -107,6 +107,7 @@ static struct { + {"38400",38400,B38400}, + {"57600",57600,B50}, + #endif ++ {"115200",115200,B115200}, + {"0", 0, B0} + }; + |