forked from Lainports/freebsd-ports
with the Gnome desktop. The program is under development, and currently supports the CQ WW, CQ WPX, and ARRL DX contests, plus Field Day. Features include on-the-fly dupe checking, CW and voice message keying, super check partial, packet (Telnet and rf nodes), networking, and radio control (currently for the FT-1000 only). The program is designed to be used by U.S. stations, with some support for Canadian stations. New features and contests are being added regularly, and I will consider adding support for DX stations if there is sufficient demand. (The port version has bug fixes and some modifications for Canadian stations. - db) Submitted by: self
27 lines
1.4 KiB
C
27 lines
1.4 KiB
C
--- globs.h.orig 2007-07-20 10:26:01.000000000 -0400
|
|
+++ globs.h 2007-11-23 09:38:53.000000000 -0500
|
|
@@ -169,8 +169,15 @@
|
|
"<18.0>", "<19.2>", "<20.6>", "<22.2>", "<24.0>",
|
|
"<26.2>", "<28.8>", "<32.0>", "<36.0>", "<41.1>",
|
|
"<48.0>", "<57.6>", "<72.0>"};
|
|
+/* These device names are really specific to FreeBSD -db */
|
|
+#ifdef BSD
|
|
+static const gchar *port_bracket[6] = {"<OFF>", "<ttyd0>", "<ttyd1>",
|
|
+ "<ttyU0>", "<ttyU1>", "<TELNET>"};
|
|
+#else
|
|
static const gchar *port_bracket[6] = {"<OFF>", "<ttyS0>", "<ttyS1>",
|
|
"<ttyUSB0>", "<ttyUSB1>", "<TELNET>"};
|
|
+#endif
|
|
+
|
|
static const gchar *yn_bracket[2] = {"<YES>", "<NO>"};
|
|
static const gchar *dupe_bracket[2] = {"<ASK>", "<ALWAYS>"};
|
|
static const gchar *partial_bracket[3] = {"<NO>", "<2>", "<3>"};
|
|
@@ -178,7 +185,7 @@
|
|
" Station Call Sign", "Operator Call Sign",
|
|
" Operator Name", " Address",
|
|
" Address", " City",
|
|
- " State", " Zip Code",
|
|
+ " State/Province", " Zip/Postal Code",
|
|
" Latitude", " Longitude",
|
|
" Offset to UTC", " Entry Category",
|
|
" Power", " Contest Type",
|