If the MySQL library isn't explicitly initialized, the mysql library will
end up calling EVP_cleanup() while detecting the MySQL version, which
clobbers the OpenSSL context, preventing LoTW (and perhaps ClubLog)
integration from working properly.
Look in ${LOCALBASE}/lib/mysql/ for MySQL and MariaDB libraries.
Only look for .so file, don't look for "any" SONAME.
### Fixed
#### Project Scope
- Fix Boost 1.67 linking issue
#### gnuradio-runtime
- Logging: fixed issues where messages weren't properly written to stdout/stderr due to incorrect strings
#### gr-analog
- `fmdet_cf`'s derivative coefficients were wrong.
#### gr-blocks
- `skiphead` used to incorrectly handle tags, now properly shifts
#### gr-digital
- `qa_packet_format`: Unit test used to potentially lock up due to incorrect conditionals
- `clock_recovery_cc`, `crc32_bb`: Accessing the `[0]` element of an empty vector is UB, even if you don't use the result afterwards.
#### gr-fec
- `polar_encoder`/`_common`: Fixed multiple out-of-bound accesses due to insufficient vector length checks
#### gr-filter
- `fft_filter`, `filter_delay`: Accessing the `[0]` element of an empty vector is UB, even if you don't use the result afterwards.
Fix dependancy problem when UHD is not used.
Raster::resize() was being called with a negative width or height due to
bad state being stored in the config. This resulted in fldigi crashing
before the UI was displayed. This patch works around the problem and has
been submitted upstream.
This is also the first version where all the issues are fixed, and support
has been included for ALSA and Pulseaudio. The ioctl() issue is resolved,
and gettext is properly controlled by the NLS option.
I'll be submitting these patches upstream, but due to the low rate of
releases, want to get them into ports first.
This is heavily modified from the submitted patch as every time anything
was tested, a new issue cropped up.
PR: 229782
Reported by: Yuri Victorovich <yuri@freebsd.org>
A Python-based, open source, platform independent, utility to communicate
with the ROM bootloader in Espressif ESP8266 & ESP32 chips.
WWW: https://github.com/espressif/esptool
Reviewed by: koobs, mat
Approved by: koobs (mentor)
Differential Revision: https://reviews.freebsd.org/D16483
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which
has now moved from GCC 6 to GCC 7 by default.
This includes ports
- featuring USE_GCC=yes or USE_GCC=any,
- featuring USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and those
- with USES=compiler specifying one of openmp, nestedfct, c11, c++0x,
c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib.
PR: 222542
- Removed BUILD_DEPENDS (it's not required for a successful build)
- Set RUN_DEPENDS accordingly for the given requirements
- Added NO_ARCH
- Fixed some typos in pkg-descr
- Updated pkg-plist
PR: 229206
Submitted by: freebsd_ports@k-worx.org
Approved by: maintainer timeout
Sponsored by: iXsystems Inc.
CQRLOG does *not* work with the version of OpenSSL in 10.4. This only seems
to impact the LoTW integration though, so I don't think it needs to be
marked as broken with that version.
Also, update all the patches to use makepatch.
While there, cleanup, and sort depends.
When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are:
1) use RUN_DEPENDS to set BUILD_DEPENDS:
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= foo:bar/baz
2) create another variable and use it:
MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS= ${MY_DEPENDS}
RUN_DEPENDS= ${MY_DEPENDS}
3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:
BUILD_DEPENDS= foo:bar/baz
RUN_DEPENDS:= ${BUILD_DEPENDS}
Sponsored by: Absolight
most cases, the failure mode is the same. Also, mark them broken on
mips when necessary.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
From now on, ports that depend on Qt4 will have to set
USES= qt:4
USE_QT= foo bar
ports depending on Qt5 will use
USES= qt:5
USE_QT= foo bar
PR: 229225
Exp-run by: antoine
Reviewed by: mat
Approved by: portmgr (antoine)
Differential Revision: →https://reviews.freebsd.org/D15540
Fix errors like this:
error: always_inline function '_mm_loadu_ps' requires target feature 'mmx',
but would be inlined into function 'x' that is compiled without support for 'mmx'
Reported by: fallout
20170817 QSSTV 9.2.6
Changed the .pro file for autodetecing correct libopenjpg2 (DL1JBE -Tom)
ftp transfer - initialize bug fix (VK6MN- Mike)
Help manual -> path correction and corrected some typo's (DJ0MBA- Marinus)
SSTV initialize bug fix (Adrian)
Camera support for Raspberry PI Cam
fixed audio loopback use
fixed transmission after stop, image was not restarted at top
20161022 QSSTV 9.2.5
Screen size reduced for use with smaller screens-fixed.
rig control - added capabilities test.
PR: ports/229140
Submitted by: takefu@airport.fm