------------------------------------------------------------ ChangeLog v3.7.10.1 This is the first bug-fix release for v3.7.10 This contains bug fixes primarily for GRC and DTV. - GRC * Catch more exceptions thrown by ConfigParser when reading corrupted grc.conf files. * Fix the docstring update error for empty categories. * Fix grcc to call refactored GRC code. * Convert initially opened files to absolute paths to prevent attempting to read from tmp. * Move startup checks back in to gnuradio-companion script from grc/checks.py. - DTV * Fix a segfault that occurs from out-of-bounds access in dvbt_bit_inner_interleaver forecast by forecasting an enumerated list of all input streams. * Fix VL-SNR framing. - Digital * Enable update rate in block_recovery_mm blocks to keep tags close to the the proper clock-recovered sample time. Tag offsets will still be off between calls to work, but each work call updates the tag rate. - Analog * Fix the derivative calculation in fmdet block. - Builds * Fix linking GSL to gr-fec. * Use gnu99 C standard rather than gnu11 standard to maintain support for GCC 4.6.3. - Other Minor spelling and documentation fixes. Fix uhd_siggen_gui when using lo_locked. (pkgsrc changes on gnuradio-core/Makefile.common) - Following lines added CXXFLAGS+= -pthread .include "../../devel/cppunit/buildlink3.mk" .include "../../math/gsl/buildlink3.mk"
25 lines
767 B
Makefile
25 lines
767 B
Makefile
# $NetBSD: Makefile,v 1.9 2017/01/13 22:03:37 mef Exp $
|
|
|
|
PKGNAME= gnuradio-zeromq-${VERSION}
|
|
COMMENT= All of the zeromq blocks, utilities, and examples
|
|
|
|
# zmq.hpp: No such file or directory
|
|
# https://github.com/zeromq/cppzmq.git
|
|
|
|
#GIT_REPOSITORIES= master
|
|
#GIT_REPO.master= https://github.com/zeromq/cppzmq.git
|
|
#GIT_MODULE.master= cppzmq
|
|
# for work around, the file is copied to files directory
|
|
|
|
.include "../../ham/gnuradio-core/Makefile.common"
|
|
.include "../../ham/gnuradio-core/Nocore.mk"
|
|
|
|
CMAKE_ARGS+= -DENABLE_DEFAULT=False
|
|
CMAKE_ARGS+= -DENABLE_GR_ZEROMQ=True
|
|
CMAKE_ARGS+= -DZEROMQ_INCLUDE_DIRS=${PREFIX}/include
|
|
|
|
post-patch:
|
|
${CP} ${PKGDIR}/files/zmq.hpp ${WRKSRC}/gr-zeromq/include/
|
|
|
|
.include "../../net/zeromq/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|