head 1.3; access; symbols pkgsrc-2014Q1:1.2.0.6 pkgsrc-2014Q1-base:1.2 pkgsrc-2013Q4:1.2.0.4 pkgsrc-2013Q4-base:1.2 pkgsrc-2013Q3:1.2.0.2 pkgsrc-2013Q3-base:1.2 pkgsrc-2013Q2:1.1.0.2 pkgsrc-2013Q2-base:1.1; locks; strict; comment @// @; 1.3 date 2014.06.15.14.27.43; author mef; state dead; branches; next 1.2; commitid KkgAG2xOg9WaUCEx; 1.2 date 2013.09.13.06.35.55; author mef; state Exp; branches; next 1.1; commitid 2QIUalkX7Hlz8f5x; 1.1 date 2013.05.06.14.49.32; author joerg; state Exp; branches; next ; desc @@ 1.3 log @(Upstream update 3.21.79 to 3.21.82) =Version 3.21.82= 2014-04-30 David Freese 92a7d01: hash-fix b0db34c: RnA Analysis fa9e10a: Phase accumulator b7ce1cd: Base Directories c9c6f28: WF Height/Speed ca61d3f: RX Only 43fbe22: RTTY mem leak f470ce3: Olivia/Contestia custom b87e664: ARQ abort a9818aa: RTTY Custom Shift =Version 3.21.81= x 134221e: TX monitor 922c16f: Spotter seg fault dbe4181: Audio selectors for PORTAUDIO 9771f4b: M4 tr1 detect 03643a6: ttyACMxx identification cfe6f87: Olivia critical section a60d6f7: MT63 critical section c97043c: Logbook fields 3bc4f31: Hamlib selector d33b7e7: Combobox 6f71f12: RTTY macro ac671da: clang compatibility =Version 3.21.80= 2014-03-19 David Freese FreeBSD nitems Cabrillo time off Change Fl_ListBox Restore Fl_Choice Olivia select fix ComboBox fluid update (pkgsrc) Upstream now includes following patches: (with slightly different code, say, #ifdef __clang__ etc), thus deleted: patch-src_include_logsupport.h patch-src_include_strutil.h patch-src_logbook_logsupport.cxx patch-src_misc_dxcc.cxx patch-src_misc_re.cxx patch-src_spot_notify.cxx patch-src_spot_pskrep.cxx patch-src_spot_spot.cxx @ text @$NetBSD: patch-src_spot_notify.cxx,v 1.2 2013/09/13 06:35:55 mef Exp $ Avoid implicit conversions to bool for streams. Require C++11 for Clang and prefer std version over tr1 when in C++11 mode. --- src/spot/notify.cxx.orig 2013-07-06 20:54:45.000000000 +0900 +++ src/spot/notify.cxx 2013-07-07 15:25:39.000000000 +0900 @@@@ -35,7 +35,10 @@@@ #include "timeops.h" -#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) +#if __cplusplus >= 201103L +# define MAP_TYPE std::unordered_map +# include +#elif (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) # define MAP_TYPE std::tr1::unordered_map # include #else @ 1.2 log @Bump 3.21.70 to 3.21.76 =Version 3.21.76= 2013-09-09 David Freese ARQ mode character set RsID, Macro Queue, DTMF transmit management Xmlrpc method signatures RsID fo computation =Version 3.21.75= xmlrpcpp methods RSID update Error exit fltk 1.1.x Sound File =Version 3.21.74= initialize active_modem XML parser 64 bit compile warnings Automake bug =Version 3.21.73= qrunner mod Pskmail-test 2013-07-24 John Phelps Doxygen for fldigi * Added scripts to generate Doxygen documentation from fldigi git repository / source * Also executes "cppcheck" and includes those results on Doxygen page (if installed on system) * Generates patches and log for the last 125 commits: includes links on Doxygen page 2013-07-24 David Freese CPPcheck errors Modem class Rigcat Thread Missing header fldigi-shell Fl::focus on OS X Data files KML thread Fl::flush ADIF_RW thread trx semaphore Digiscope buffer 2013-07-07 Robert Stiles Portaudio exceptions 2013-07-07 David Freese mxe-win32 regex PSKMAIL/ARQ socket Thor update record_loader fix Code cleanup Pskmail Notify RsID MFSK shut down 2013-06-27 Robert Stiles Cwidth test for zero 2013-06-21 David Freese XMLRPC MXE compile 2013-06-19 Stefan Fendt RTTY decoder 2013-06-09 Dennis Engdahl RigCAT user commands 2013-06-08 David Freese TX state pskmail events * Changed extended rsid iaw doc/rsid_codes.gnumeric 2013-06-01 Remi Chateauneu KML/Synop/RTTY/Navtex Port to MXE / MingW QSL VIA XML parser 2013-05-31 David Freese ARQ support changes xmlrpcpp PortAudio SysV ARQ interface METAR format RSID logic =Version 3.21.72= RsID Timeout PSKMAIL Colors/Fonts Dialog Developer List =Version 3.21.71= About update Wavefile generate MT63 mode selection ARQ server 2013-04-30 Remi Chateauneu xmlrpc-c removal 2013-04-30 David Freese Signal Browser Colors QRZ query Rigsupport PO file update eQSL url PSKMAIL @ text @d1 1 a1 1 $NetBSD: patch-src_spot_notify.cxx,v 1.1 2013/05/06 14:49:32 joerg Exp $ @ 1.1 log @Avoid implicit conversions to bool for streams. Require C++11 for Clang and prefer std version over tr1 when in C++11 mode. @ text @d1 1 a1 1 $NetBSD$ d3 9 a11 5 --- src/spot/notify.cxx.orig 2013-05-03 14:35:28.000000000 +0000 +++ src/spot/notify.cxx @@@@ -33,7 +33,10 @@@@ #include #include @