diff options
author | Diane Bruce <db@FreeBSD.org> | 2014-04-12 23:43:51 +0000 |
---|---|---|
committer | Diane Bruce <db@FreeBSD.org> | 2014-04-12 23:43:51 +0000 |
commit | bf9a7946d73a778591df02a25ed9263003d9649d (patch) | |
tree | 883780872a68ca30ed93d8af0fb4ca8f915ff2f8 /comms/flrig | |
parent | Update to the 20140406 snapshot of GCC 4.9.0. (diff) |
- Removed unnecessary diff
=Version 1.3.15=
2013-12-02 David Freese <w1hkj@w1hkj.com>
3422195: 64 bit void pointer
fa317c3: tty search
7732b22: TT566
6964cb6: TS590S/TS990S/TS2000 controls
5b340a9: FTdx1200
e199a62: Send cmd debug
718f46f: TS-990
05898d5: Sliders
c13a20e: Notch controls
86f1d0b: 7600 split
9f08704: Restore debug
PR: ports/188537
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=351160
Diffstat (limited to 'comms/flrig')
-rw-r--r-- | comms/flrig/Makefile | 11 | ||||
-rw-r--r-- | comms/flrig/distinfo | 4 | ||||
-rw-r--r-- | comms/flrig/files/patch-src_debug.cxx | 30 |
3 files changed, 5 insertions, 40 deletions
diff --git a/comms/flrig/Makefile b/comms/flrig/Makefile index fc48d83987ed..547d6d4f0521 100644 --- a/comms/flrig/Makefile +++ b/comms/flrig/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flrig -PORTVERSION= 1.3.13 +PORTVERSION= 1.3.15 CATEGORIES= comms hamradio MASTER_SITES= http://www.w1hkj.com/downloads/flrig/ \ ${MASTER_SITE_LOCAL} @@ -24,12 +24,7 @@ OPTIONS_DEFINE= NATIVE_OPT NATIVE_OPT_DESC= Enable Native Optimizations -.include <bsd.port.pre.mk> - -.if ${PORT_OPTIONS:MNATIVE_OPT} -CONFIGURE_ARGS+=--enable-optimizations=native -.else -CONFIGURE_ARGS+=--enable-optimizations=none -.endif +NATIVE_OPT_CONFIGURE_ON+= --enable-optimizations=native +NATIVE_OPT_CONFIGURE_OFF+= --enable-optimizations=none .include <bsd.port.mk> diff --git a/comms/flrig/distinfo b/comms/flrig/distinfo index f800572cedeb..88540ddb466d 100644 --- a/comms/flrig/distinfo +++ b/comms/flrig/distinfo @@ -1,2 +1,2 @@ -SHA256 (flrig-1.3.13.tar.gz) = c5238bc72dc04a2b2ba741e093672990ec9ceecc7bfc4137b76d9e01a89dfdbb -SIZE (flrig-1.3.13.tar.gz) = 578415 +SHA256 (flrig-1.3.15.tar.gz) = 1c6163b3b1a410829a2ac4bd68f857d7c25419041bd30eb003bd0aff22348818 +SIZE (flrig-1.3.15.tar.gz) = 596888 diff --git a/comms/flrig/files/patch-src_debug.cxx b/comms/flrig/files/patch-src_debug.cxx deleted file mode 100644 index 054659fcd5e4..000000000000 --- a/comms/flrig/files/patch-src_debug.cxx +++ /dev/null @@ -1,30 +0,0 @@ ---- src/debug.cxx.orig 2013-08-29 02:59:21.000000000 -0700 -+++ src/debug.cxx 2014-04-11 03:02:01.000000000 -0700 -@@ -126,7 +126,7 @@ - - vsnprintf(sztemp, sizeof(sztemp), fmt, args); - estr.append(sztemp); -- vfprintf(wfile, fmt, args); -+ fputs(sztemp, wfile); - - va_end(args); - -@@ -149,16 +149,14 @@ - - vsnprintf(sztemp, sizeof(sztemp), fmt, args); - estr.append(sztemp); -- vfprintf(wfile, fmt, args); -+ fputs(sztemp, wfile); - va_end(args); - - fflush(wfile); - - if (tty) { - if (level <= DEBUG_LEVEL && level >= QUIET_LEVEL) { -- va_start(args, format); -- vfprintf(stderr, fmt, args); -- va_end(args); -+ fputs(sztemp, stderr); - } - } - |