diff options
author | mef <mef@pkgsrc.org> | 2017-05-05 00:11:15 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2017-05-05 00:11:15 +0000 |
commit | 79d766a93cf684c060b09f0098ec59ac45241055 (patch) | |
tree | 197552f34f0f8897649c76e172e44cb71b65a3a4 /ham/fldigi/patches | |
parent | 9b4090b2d0debc2f80b28ba0a3d17eb68a529cf1 (diff) | |
download | pkgsrc-79d766a93cf684c060b09f0098ec59ac45241055.tar.gz |
Updated ham/fldigi 3.23.21 to 4.0.3
---------------------------
=Version 4.0.3=
2017-04-30 David Freese <iam_w1hkj@w1hkj.com>
c9b9bb9: OS X Wizard
a8a6e09: cw decoder
7e552c4: CW wait
=Version 4.0.2=
2017-04-14 keith bellairs <keith@bellairs.org>
7432793: Lotw Match
2017-04-13 David Freese <iam_w1hkj@w1hkj.com>
ed5850e: flrigi bw synch
9723972: Clang 8.1.0
97024a9: Sound card
1549193: Revert "wefax"
c85b75e: IFKP image processing
ef39743: Macro Save
4396c43: CW end-of-transmit
2f1d709: Font Initialization
a1d4122: OS X socket connect
835d823: Winkeyer exit process
=Version 4.0.1=
f40e79d: Socket connect
=Version 4.0.0=
7efc9b2: OS X 10.12 build
ffd6f09: STATION_CALLSIGN
f0f3763: Free BSD mods
b163605: Logbook mods
167f064: ru-po-update
5354812: Default Tx Audio
fac5963: remove sprintf
a9db866: Documentation update
b522581: n3fjp logger search
c565b03: fopen -> fl_fopen
abd9554: 48 bar macro
5f5776c: CW decoder
9c0f906: DX cluster
016799a: Logbook support
b4e227b: WinKeyer
1fe26c1: fsq ifkp s/n computation
d576fd8: fltk version update
2a1a8c3: Macro Date Time Formats
2017-02-24 Keith Bellairs <keith@bellairs.org>
627eb31: lotw addition
2017-02-23 David Freese <iam_w1hkj@w1hkj.com>
0507110: THOR/IFKP Image transfers
2017-02-23 Giuseppe Ciaccio <giuseppe.ciaccio@unige.it>
95b51b6: OSS bug fix
2017-02-21 David Freese <iam_w1hkj@w1hkj.com>
f462dd7: ifkp s/n update
376f7f5: PSKMAIL PTT fault protection
bcec5aa: Logbook File Handling
cbdea29: n3fjp contest update
fccb4eb: fsq s/n update
1786a5e: README update
67bc122: Russian UTF-8 translation
9decf04: Tooltips
2017-01-30 Jae Stutzman <k5jae@stutzman.net>
fef4e93: Hamlib/RigCAT/XMLRPC Interface
(pkgsrc changes)
- Drop patch, upstream fixed it (slightly different from ours)
our patch if ( ptr2 && (unsigned)(ptr2 - ptr) <= p)
upstream if ((ptr2 != NULL) && (unsigned)(ptr2 - ptr) <= p)
- +.include "ham/flxmlrpc/buildlink3.mk"
Diffstat (limited to 'ham/fldigi/patches')
-rw-r--r-- | ham/fldigi/patches/patch-src_logbook_adif__io.cxx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/ham/fldigi/patches/patch-src_logbook_adif__io.cxx b/ham/fldigi/patches/patch-src_logbook_adif__io.cxx deleted file mode 100644 index bfba7a210bb..00000000000 --- a/ham/fldigi/patches/patch-src_logbook_adif__io.cxx +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-src_logbook_adif__io.cxx,v 1.2 2017/01/01 07:27:33 mef Exp $ - -Pointers don't have a sign. - ---- src/logbook/adif_io.cxx.orig 2016-12-21 10:22:23.131474254 +0000 -+++ src/logbook/adif_io.cxx -@@ -311,7 +311,7 @@ void cAdifIO::do_readfile(const char *fn - } else { - ptr2 = ptr + 1; - } -- if ((ptr2) > 0 && (unsigned)(ptr2 - ptr) <= p) -+ if (ptr2 && (unsigned)(ptr2 - ptr) <= p) - ptr = strchr(ptr2,'<'); - else - break; // corrupt record |