mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-12 21:10:03 +00:00
Merge branch 'next' of https://github.com/carlesfernandez/gnss-sdr into next
This commit is contained in:
commit
a6b0e669da
@ -58,6 +58,18 @@ if(Boost_VERSION LESS 105800)
|
|||||||
target_compile_definitions(pvt_gr_blocks PRIVATE -DOLD_BOOST=1)
|
target_compile_definitions(pvt_gr_blocks PRIVATE -DOLD_BOOST=1)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# Check if we have std::put_time (Workaround for gcc < 5.0)
|
||||||
|
include(CheckCXXSourceCompiles)
|
||||||
|
check_cxx_source_compiles("
|
||||||
|
#include <iomanip>
|
||||||
|
int main()
|
||||||
|
{ std::put_time(nullptr, \"\"); }"
|
||||||
|
HAS_PUT_TIME
|
||||||
|
)
|
||||||
|
if(${HAS_PUT_TIME})
|
||||||
|
target_compile_definitions(pvt_gr_blocks PRIVATE -DHAS_PUT_TIME=1)
|
||||||
|
endif()
|
||||||
|
|
||||||
set_property(TARGET pvt_gr_blocks
|
set_property(TARGET pvt_gr_blocks
|
||||||
APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
|
APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
||||||
|
@ -369,7 +369,9 @@ rtklib_pvt_gs::rtklib_pvt_gs(uint32_t nchannels,
|
|||||||
time_t when = std::time(nullptr);
|
time_t when = std::time(nullptr);
|
||||||
auto const tm = *std::localtime(&when);
|
auto const tm = *std::localtime(&when);
|
||||||
std::ostringstream os;
|
std::ostringstream os;
|
||||||
|
#ifdef HAS_PUT_TIME
|
||||||
os << std::put_time(&tm, "%z");
|
os << std::put_time(&tm, "%z");
|
||||||
|
#endif
|
||||||
std::string utc_diff_str = os.str(); // in ISO 8601 format: "+HHMM" or "-HHMM"
|
std::string utc_diff_str = os.str(); // in ISO 8601 format: "+HHMM" or "-HHMM"
|
||||||
if (utc_diff_str.empty())
|
if (utc_diff_str.empty())
|
||||||
{
|
{
|
||||||
@ -379,7 +381,9 @@ rtklib_pvt_gs::rtklib_pvt_gs(uint32_t nchannels,
|
|||||||
int m = std::stoi(utc_diff_str[0] + utc_diff_str.substr(3), nullptr, 10);
|
int m = std::stoi(utc_diff_str[0] + utc_diff_str.substr(3), nullptr, 10);
|
||||||
d_utc_diff_time = boost::posix_time::hours(h) + boost::posix_time::minutes(m);
|
d_utc_diff_time = boost::posix_time::hours(h) + boost::posix_time::minutes(m);
|
||||||
std::ostringstream os2;
|
std::ostringstream os2;
|
||||||
|
#ifdef HAS_PUT_TIME
|
||||||
os2 << std::put_time(&tm, "%Z");
|
os2 << std::put_time(&tm, "%Z");
|
||||||
|
#endif
|
||||||
std::string time_zone_abrv = os2.str();
|
std::string time_zone_abrv = os2.str();
|
||||||
if (time_zone_abrv.empty())
|
if (time_zone_abrv.empty())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user