Created attachment 161640 [details] gnuradio.patch Update 3.7.8
A commit references this bug: Author: db Date: Sun Oct 4 02:26:10 UTC 2015 New revision: 398562 URL: https://svnweb.freebsd.org/changeset/ports/398562 Log: Update to 3.7.8 USE_GCC=yes causes the build to fail on systems where clang and libc++ are used by default (see bug 202143, for example). This essentially means comms/gnuradio currently only builds on 9.x. The problem is caused by the fact that on 10.x and later boost is likely built using clang and libc++, but USE_GCC=yes forces gnuradio to be built with GCC and libstdc++. Ports r392951 mentioned USE_GCC=yes was added because "clang's builtins were conflicting with gnuradio", which does not seem to happen in my tests at least. PR: ports/203500 Submitted by: takefu@airport.fm Changes: head/comms/gnuradio/Makefile head/comms/gnuradio/distinfo head/comms/gnuradio/files/patch-CMakeLists.txt head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in head/comms/gnuradio/files/patch-gr-dtv__lib__dvbt__dvbt_reed_solomon.cc head/comms/gnuradio/files/patch-volk_tmpl_volk__cpu.tmpl.c head/comms/gnuradio/pkg-plist
Comment on attachment 161640 [details] gnuradio.patch Thanks!