diff options
author | mef <mef@pkgsrc.org> | 2014-10-24 07:57:50 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2014-10-24 07:57:50 +0000 |
commit | 46c740204edac7a672cdbfca2978d6d48c16166e (patch) | |
tree | 6fe5ec6abb98d22db816aaf9908c04bf2717f9c3 /ham | |
parent | 3244b276bcd8db07af0c82adc4b4901c56b96296 (diff) | |
download | pkgsrc-46c740204edac7a672cdbfca2978d6d48c16166e.tar.gz |
From bulk build report, it says
----------
# error "Compiler threading support is not turned on. Please set the
correct command line options for threading: -pthread (Linux),
-pthreads (Solaris) or -mthreads (Mingw32)"
----------
and not sure it is right suggestion, but adding the line
+CXXFLAGS.SunOS+= -pthreads
Diffstat (limited to 'ham')
-rw-r--r-- | ham/gnuradio-core/Makefile.common | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ham/gnuradio-core/Makefile.common b/ham/gnuradio-core/Makefile.common index c6669978de4..ff0176bea45 100644 --- a/ham/gnuradio-core/Makefile.common +++ b/ham/gnuradio-core/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.2 2014/10/17 09:51:56 mef Exp $ +# $NetBSD: Makefile.common,v 1.3 2014/10/24 07:57:50 mef Exp $ # This Makefile fragment is included in the package Makefiles for # GNU Radio distributed packages (they all share common configure and build # settings). @@ -62,6 +62,7 @@ PKG_SYSCONFSUBDIR= gnuradio/conf.d LDFLAGS.DragonFly+= -lboost_system LDFLAGS.SunOS+= -lboost_system +CXXFLAGS.SunOS+= -pthreads INSTALLATION_DIRS+= ${EGDIR} |