diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-11-09 18:51:35 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-11-09 18:51:35 +0800 |
commit | 0776580c4491506e653f2070ff0b20a8ff83c9f6 (patch) | |
tree | 1ffdb3414a51b552d341c440da9e8fef57ca55e3 /comms | |
parent | 5bbbed29b82f94c0e62d7a590e9bee7c8c56556b (diff) | |
download | freebsd-ports-gnome-0776580c4491506e653f2070ff0b20a8ff83c9f6.tar.gz freebsd-ports-gnome-0776580c4491506e653f2070ff0b20a8ff83c9f6.tar.zst freebsd-ports-gnome-0776580c4491506e653f2070ff0b20a8ff83c9f6.zip |
comms/fldigi: mark BROKEN after r425442
src/main.cxx:1492:2: error: no matching function for call to 'memset'
memset(src.data_in, 0, src.input_frames * sizeof(float));
^~~~~~
/usr/include/string.h:67:7: note: candidate function not viable: no known conversion from 'const float *' to 'void *' for 1st argument; take the address of the argument with &
void *memset(void *, int, size_t);
^
Reported by: pkg-fallout
Pointy hat to: @bapt (and upstream)
Diffstat (limited to 'comms')
-rw-r--r-- | comms/fldigi/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/comms/fldigi/Makefile b/comms/fldigi/Makefile index a22d06cd2566..2fa92c596979 100644 --- a/comms/fldigi/Makefile +++ b/comms/fldigi/Makefile @@ -18,6 +18,8 @@ LIB_DEPENDS= libsamplerate.so:audio/libsamplerate\ libboost_system.so:devel/boost-libs\ libfltk.so:x11-toolkits/fltk +BROKEN= Fails to build against libsamplerate-0.1.9 + USE_CXXSTD= gnu++0x GNU_CONFIGURE= yes USES= compiler:c++11-lib execinfo gmake perl5 pkgconfig shebangfix |