From d9a292acb566c6985785352c53c9ce1e3697836c Mon Sep 17 00:00:00 2001 From: Michael L Dickens Date: Thu, 1 Nov 2012 10:29:08 -0400 Subject: fix gr-analog to detect and compile 'sincos(f)' correctly --- gr-analog/lib/CMakeLists.txt | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'gr-analog/lib/CMakeLists.txt') diff --git a/gr-analog/lib/CMakeLists.txt b/gr-analog/lib/CMakeLists.txt index 5e7d131b0..aaf3c8656 100644 --- a/gr-analog/lib/CMakeLists.txt +++ b/gr-analog/lib/CMakeLists.txt @@ -131,6 +131,7 @@ list(APPEND analog_sources quadrature_demod_cf_impl.cc rail_ff_impl.cc simple_squelch_cc_impl.cc + sincos.cc ) list(APPEND analog_libs @@ -174,3 +175,11 @@ if(ENABLE_TESTING) GR_ADD_TEST(test_gr_analog test-gr-analog) endif(ENABLE_TESTING) + +CHECK_CXX_SOURCE_COMPILES(" + #define _GNU_SOURCE + #include + int main(){double x, sin, cos; sincos(x, &sin, &cos); return 0;} + " HAVE_SINCOS +) +GR_ADD_COND_DEF(HAVE_SINCOS) -- cgit